/** Importing fonts **/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Sora:wght@400;500;600;700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Anuphan:wght@100..700&family=Dancing+Script:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Mukta:wght@200;300;400;500;600;700;800&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Pacifico&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Raleway:ital,wght@0,100..900;1,100..900&family=Volkhov:ital,wght@0,400;0,700;1,400;1,700&display=swap");

/** Global CSS styles **/
:root {
    /* --primary-color: #4175A0; */
    /* --primary-color: #1c3664; */
    --primary-color: #03306f;
    /* --primary-color: #4b86b4; */
    --secondary-color: #0f5d9a;
    --tertiary-color: #fc0;
    --neutral: #547bc0;
    --error: #bd250e;
    --silver-golden: #9a7e10;
    /* --legendary-color: #f49016; */
    /* --legendary-color: #f69115; */
    /* --heading-color: #14183e; */
    --heading: var(--tertiary-color);
    --caption: #222;
    --paragraph-color: #000;
    --link-color: #3952a2;
    --white: #fff;
    --black: #000;
    --light-grey: #fafafa;
    --bg-1: #f1f6f8;
    --breadcrump-bg: #dcf6ff;
    --footer-text-color: #fff;
    --light-blue: #d0e3f3;
    --input-border: #878787;
    --light-yellow: #ffeedc;
    /* --light-yellow: #fff8f1; */
    --tertiary-box-shadow: 6px 6px 0px #ffcc00;
    --linear-gradient: linear-gradient(
        89deg,
        #16477c 19.77%,
        #7c8f54 71.96%,
        #fc0 120.52%
    );
    --linear-blue: linear-gradient(
        92deg,
        #16477c -7.98%,
        #0f5d9a 45.17%,
        #1364a4 68.2%,
        #1c75bb 87.56%
    );
    --linear-blue-hover: linear-gradient(
        160deg,
        #16477c -7.98%,
        #0f5d9a 45.17%,
        #1364a4 68.2%,
        #1c75bb 87.56%
    );
    --border: #e5dfa7;
    --grey: #eae9e9;
    --linear-bg: linear-gradient(
        108deg,
        #1c3664 -1.74%,
        #244175 16.53%,
        #28477d 51.99%,
        #3a60a2 93.67%
    );
    --placeholder: #333;
    --primary-font: "Manrope", sans-serif;
    --secondary-font: "Inter", sans-serif;
    --tertiary-font: "DM Sans", sans-serif;
    --accent-font: "Inter", sans-serif;

    --line-height: 18px;
    --paragraph-fw: 1rem;
    --caption-fs: 0.875rem;
    --btn-fs: 1rem;
    --btn-fw: 600;

    --h1-fs: 3rem;
    --h2-fs: 2rem;
    --h3-fs: 1.75rem;
    --h4-fs: 1.4rem;
    --h5-fs: 1.25rem;
    --h6-fs: 1.1rem;
    --h-fw: 700;

    --h1-mb: 1rem;
    --h2-mb: 0.875rem;
    --h3-mb: 0.7rem;
    --h4-mb: 0.6rem;
    --h5-mb: 0.5rem;
    --h6-mb: 0.3rem;

    --drop-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
    /* --card-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.12); */
    --card-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.4);

    --card-shadow-hover: 0px 1px 7px 0px rgba(41, 41, 41, 0.25);
    --text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
    --spread-shadow: 0px 24px 48px 0px rgba(0, 0, 0, 0.32);
    --light-brust-shadow: 0px 7px 12px rgba(184, 184, 184, 0.2);
    --light-brust-shadow-hover: 0px 7px 12px rgba(133, 133, 133, 0.2);
    --box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.2);

    --border-radius-1: 10px;
    --border-radius-2: 14px;
    --border-radius-3: 16px;
    --border-radius-3-5: 20px;
    --border-radius-4: 28px;
    --border-radius-5: 50px;

    @media (max-width: 767px) {
        --line-height: 1.3rem;
        --paragraph-fs: 1rem;
        --caption-fs: 0.875rem;
        --btn-fs: 1rem;
        --btn-fw: 600;

        --h1-fs: 2rem;
        --h2-fs: 1.7rem;
        --h3-fs: 1.6rem;
        --h4-fs: 1.5rem;
        --h5-fs: 1.4rem;
        --h6-fs: 1.2rem;
        --h-fw: 700;

        --h1-mb: 1rem;
        --h2-mb: 1.8rem;
        --h3-mb: 0.875rem;
        --h4-mb: 0.75rem;
        --h5-mb: 0.625rem;
        --h6-mb: 0.5rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* transition: all 0.3s ease; */
}

/* .wow {
    opacity: 0;
}

.wow .animate__fadeIn {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
} */
html {
    scroll-behavior: smooth;

}
footer .button:hover img {
    transform: translateX(0px) !important;
}
body {
    font-family: var(--secondary-font);
    font-size: var(--paragraph-fs);
    line-height: var(--line-height);
    color: var(--paragraph-color);
    font-style: normal;
    font-weight: 400;
    overflow-x: hidden;
    position: relative;
}

.aura {
    position: relative;
}

.text-accent {
    font-family: var(--accent-font);
}

.text-primary {
    font-family: var(--primary-font);
}

.secondary-fs {
    font-family: var(--secondary-font);
}

.text-tertiary {
    font-family: var(--tertiary-font);
}

.aura::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(59, 90, 158, 1) 0%,
        rgba(59, 90, 158, 0.8) 20%,
        rgba(59, 90, 158, 0.6) 40%,
        rgba(59, 90, 158, 0.4) 60%,
        rgba(59, 90, 158, 0.2) 80%,
        rgba(59, 90, 158, 0) 100%
    );
}

.left-border {
    border-left: 4px solid var(--primary-color);
    background-color: #b7e3ff5e;
    border-radius: 10px;
    padding: 7px 10px 8px 10px;
    display: inline-block;
    max-width: 100%;
    box-sizing: border-box;
}

.text-dim-black {
    color: rgb(57 57 57) !important;
}

.text-legendary {
    color: var(--legendary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-paragraph {
    color: var(--paragraph-color) !important;
}

.text-tertiary {
    color: var(--tertiary-color) !important;
}

.text-service {
    color: #044e88 !important;
}

.why-jrk-card .icon i {
    height: auto;
    font-size: 32px;
}

.zigzag-separator {
    border: none;
    height: 3px;
    background: repeating-linear-gradient(
        45deg,
        var(--legendary-color) 0,
        var(--legendary-color) 6px,
        transparent 6px,
        transparent 12px
    );
    margin: 70px 0;

    @media (max-width: 767px) {
        margin: 40px 0;
    }
}

.heading-line {
    position: relative;
    padding-bottom: 10px;
}

.heading-line::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 36px;
    border-radius: 20px;
    background-color: currentColor;

    @media (max-width: 767px) {
        height: 2px;
    }
}

.overlay {
    /* position: relative; */
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
}

.overlay::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    /* z-index: 11; */
    user-select: none;
    pointer-events: none;
}

ul,
p {
    padding: 0;
    margin: 0;
}

p {
    margin-bottom: 15px;
    line-height: 1.5rem;
}

ol li,
ul li {
    line-height: 1.5 !important;
}

.body-content ul {
    display: flex;
    flex-direction: column;
    gap: 3px;
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 7px;
    letter-spacing: 0.2px;
    margin-bottom: 14px;
}

.body-content ol {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding-left: 30px !important;
    margin-bottom: 14px;
}

.body-content ul li {
    position: relative;
    padding-left: 20px;
}

.body-content ul li::before {
    content: "\f111" !important;
    position: absolute !important;
    left: 0 !important;
    top: 4px;
    font-family: "FontAwesome";
    font-size: 9px !important;
    color: var(--paragraph-color);
    height: 100%;
    width: 100%;
}

.body-content .content-list {
    list-style: none !important;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;

    @media (max-width: 767px) {
        width: 100%;
    }
}

.body-content .content-list li {
    padding-left: 0px;
}

.body-content .content-list li a {
    position: relative;
    font-weight: 700;
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 10px 10px 10px 20px;
    /* border: 1px solid var(--input-border); */
    /* box-shadow: var(--light-brust-shadow-hover); */
    /* border-radius: var(--border-radius-2); */
    background-color: #efefef;
    border-radius: 7px;
    box-shadow: 1px 1px 3px rgb(0 0 0 / 37%);

    @media (max-width: 767px) {
        box-shadow: none;
    }
}

.body-content .content-list li:hover a span {
    text-decoration: underline;
    color: var(--secondary-color);
}

.body-content .content-list .icon {
    border-radius: 50%;
    padding: 10px;
    /* background-color: #f5f5f5; */
    height: 36px;
    width: 36px;
}

.body-content .content-list .icon img {
    transform: translateX(0);
    transition: all 0.3s ease;
}

.body-content .content-list li:hover .icon img {
    /* background-color: var(--tertiary-color); */
    transform: translateX(3px);
}

.body-content .content-list li::before {
    /* content: url("/assets/icons/check.svg"); */
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 0px;
    height: 0px;
    /* top: 2px;
    width: 17px;
    height: 17px; */
}

.body-content .color-list li {
    color: var(--white) !important;
}

.right-arrow {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    background-image: url("../assets/icons/right-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.body-content .content-list li:hover a .right-arrow {
    background-image: url("../assets/icons/right-arrow-hover.svg");
}

.body-content .image-wrapper {
    border-radius: 3px;
}

/* .body-content ul {
    gap: 14px !important;
} */
/* @media (max-width: 767px) {
    .body-content ul {
        gap: 5px !important;
    }
} */
.body-content ul li {
    color: var(--paragraph-color) !important;
    /* position: relative; */
}

.body-content ul li::before {
    /* position: absolute;
    top: 8px;
    left: 0px; */
    content: url("../assets/icons/service-list-icon-2.svg") !important;
    height: 16px;
    width: 16px;
}

.body-content .color-list li::before {
    content: url("../assets/icons/service-list-icon-3.svg") !important;
    height: 16px;
    width: 16px;
}

a:hover {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
    color: var(--black);
    line-height: 1.2;
    padding: 0;
    font-weight: var(--h-fw);
    transition: all 0.3s ease;
}

h1 {
    font-size: var(--h1-fs);
    font-weight: 500;
    margin-bottom: var(--h1-mb);
}

h2 {
    font-size: var(--h2-fs);
    margin-bottom: var(--h2-mb);
}

h3 {
    font-size: var(--h3-fs);
    margin-bottom: var(--h3-mb);
}

h4 {
    font-size: var(--h4-fs);
    margin-bottom: var(--h4-mb);
    color: var(--black);
}

h5 {
    font-size: var(--h5-fs);
    margin-bottom: var(--h5-mb);
}

h6 {
    font-size: var(--h6-fs);
    margin-bottom: var(--h6-mb);
}

a {
    text-decoration: none;
    color: var(--paragraph-color);
    transition: all 0.3s ease;
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
    gap: 10px !important;
    align-items: center !important;
    text-wrap: nowrap;
}

span.hover-underline,
p.hover-underline {
    position: relative;
    display: inline-block;
}

span.hover-underline::after,
p.hover-underline::after {
    content: "";
    position: absolute;
    left: 50%;
    /* start from center */
    bottom: 0;
    width: 0;
    /* initial width 0 */
    height: 2px;
    /* thickness of underline */
    background-color: currentColor;
    /* underline color */
    transition: width 0.3s ease, left 0.3s ease;
}

span.hover-underline:hover::after,
p.hover-underline:hover::after {
    width: 100%;
    /* expand to full width */
    left: 0;
    /* grow from center to edges */
}

button {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 7px;
    align-items: center;
    text-wrap: nowrap;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--linear-blue);
    font-family: var(--accent-font);
    outline: none;
    border: none;
    color: var(--white);
    font-weight: 600;

    overflow: hidden;
    /* background: transparent; */
    /* outline: none; */
    position: relative;
    /* border: 2px solid #111;
  padding: 15px 50px; */
    transition: all 0.3s ease;
}

button:hover {
    box-shadow: 0px 3px 7px rgba(147, 147, 147, 0.5);
    background: var(--linear-blue-hover);
}

button img {
    transition: all 0.3s ease;
}

button:hover img {
    transform: translateX(3px);
}

/* Top-down hover animation */
button::before {
    content: attr(data-hover);
    position: absolute;
    left: 20px;
    /* width: 100%;
  /* text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  font-size: .8em; */
    opacity: 0;
    transform: translate(0, -200%);
    transition: all 0.3s ease-in-out;
}

button:hover:before {
    opacity: 1;
    transform: translate(0, 0);
}

/* Move original text down */
button span {
    /* text-transform: uppercase; */
    /* letter-spacing: 3px;
  font-weight: 800;
  font-size: .8em; */
    transition: all 0.3s ease-in-out;
}

button:hover span {
    transform: translate(0, 100%);
    opacity: 0;
}

/*button variant dark*/
.btn-variant-2 {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 7px;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--white);
    font-family: var(--accent-font);
    outline: none;
    border: none;
    color: var(--black);
    font-weight: 600;
    text-wrap: nowrap;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-variant-2:hover {
    background: var(--tertiary-color);
    /* box-shadow: 0px 3px 7px rgba(147, 147, 147, 0.3); */
    box-shadow: none;
}

.btn-variant-2 img {
    transition: all 0.3s ease;
}

.btn-variant-2:hover img {
    transform: translateX(3px);
}

/* Hover animation */
.btn-variant-2::before {
    content: attr(data-hover);
    position: absolute;
    left: 20px;
    opacity: 0;
    transform: translate(0, -200%);
    transition: all 0.3s ease-in-out;
}

.btn-variant-2:hover::before {
    opacity: 1;
    transform: translate(0, 0);
}

/* Move original text down */
.btn-variant-2 span {
    transition: all 0.3s ease-in-out;
}

.btn-variant-2:hover span {
    transform: translate(0, 100%);
    opacity: 0;
}

/* button variant primary */
.btn-variant-3 {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 7px;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--tertiary-color);
    color: var(--black);
    font-family: var(--accent-font);
    font-weight: 600;
    text-wrap: nowrap;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.btn-variant-3:hover {
    background: var(--tertiary-color);
    box-shadow: none;
}

.btn-variant-3 img {
    transition: all 0.3s ease;
}

.btn-variant-3:hover img {
    transform: translateX(3px);
}

/* Hover animation */
.btn-variant-3::before {
    content: attr(data-hover);
    position: absolute;
    left: 20px;
    opacity: 0;
    transform: translate(0, -200%);
    transition: all 0.3s ease-in-out;
    color: var(--black);
}

.btn-variant-3:hover::before {
    opacity: 1;
    transform: translate(0, 0);
}

/* Move original text down */
.btn-variant-3 span {
    transition: all 0.3s ease-in-out;
}

.btn-variant-3:hover span {
    transform: translate(0, 100%);
    opacity: 0;
}

.link {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 5px !important;
    align-items: center;
    text-wrap: nowrap;
    justify-content: center;
    font-family: var(--accent-font);
    outline: none;
    font-weight: 600;
    color: var(--black) !important;
}

.link-variant-2 {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 5px !important;
    align-items: center;
    text-wrap: nowrap;
    justify-content: center;
    font-family: var(--accent-font);
    outline: none;
    font-weight: 600;
    color: var(--white) !important;
}

.link-variant-2:hover {
    color: var(--tertiary-color) !important;
}

.link:hover {
    color: var(--secondary-color) !important;
}

button span {
    margin-top: -2px;
}

button i,
button img,
.link i,
.link img {
    height: 20px !important;
    width: 20px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link iconify-icon {
    font-size: 17px;
    margin-top: -4px;
}

.link-variant-2 iconify-icon {
    font-size: 20px;
    margin-top: -4px;
}

.link-variant-2 i {
    font-size: 18px;
}

a span,
li a span {
    text-wrap: nowrap;
}

.view-all-button {
    gap: 7px !important;
}

.view-all-button span {
    font-size: 15px;
    font-weight: 550;
}

.view-all-button i {
    font-size: 10px;
}

.view-all-button:hover {
    color: var(--primary-color);
}

.view-all-button:hover span {
    text-decoration: underline;
}

/**slick css starts here**/
.slick-track {
    margin: 0px;
}

/**slick css ends here**/
/**glight-box css starts here**/
.glightbox-clean .gclose {
    border-radius: 50%;
    padding: 10px;
}

/**glight-box css ends here**/
/* Bottom-right tilt */
/* Bottom-right tilt */
.tilt-bottom-right {
    --tilt-desktop: 90%;
    /* default desktop tilt */
    --tilt-mobile: 95%;
    /* default mobile tilt */

    clip-path: polygon(0 0, 100% 0, 100% var(--tilt-desktop), 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% var(--tilt-desktop), 0 100%);
    padding-bottom: 100px;

    @media (max-width: 767px) {
        clip-path: polygon(0 0, 100% 0, 100% var(--tilt-mobile), 0 100%);
        -webkit-clip-path: polygon(
            0 0,
            100% 0,
            100% var(--tilt-mobile),
            0 100%
        );
        padding-bottom: 80px;
    }
}

/* Bottom-left corner tilt */
.tilt-bottom-left {
    --tilt-desktop: 90%;
    /* how high the bottom-left corner is pulled up */
    --tilt-mobile: 95%;
    /* mobile adjustment */

    clip-path: polygon(
        0 0,
        /* top-left */ 100% 0,
        /* top-right */ 100% 100%,
        /* bottom-right */ 0 var(--tilt-desktop) /* bottom-left moved up */
    );
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 var(--tilt-desktop));
    padding-bottom: 100px;
}

@media (max-width: 767px) {
    .tilt-bottom-left {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 var(--tilt-mobile));
        -webkit-clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            0 var(--tilt-mobile)
        );
        padding-bottom: 80px;
    }
}

/* Top-left tilt */
.tilt-top-left {
    --tilt-desktop: 10%;
    --tilt-mobile: 5%;

    clip-path: polygon(0 var(--tilt-desktop), 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(
        0 var(--tilt-desktop),
        100% 0,
        100% 100%,
        0 100%
    );
    padding-top: 100px;

    @media (max-width: 767px) {
        clip-path: polygon(0 var(--tilt-mobile), 100% 0, 100% 100%, 0 100%);
        -webkit-clip-path: polygon(
            0 var(--tilt-mobile),
            100% 0,
            100% 100%,
            0 100%
        );
        padding-top: 60px;
    }
}

/* Top-right tilt */
.tilt-top-right {
    --tilt-desktop: 10%;
    --tilt-mobile: 5%;

    clip-path: polygon(0 0, 100% var(--tilt-desktop), 100% 100%, 0 100%);
    -webkit-clip-path: polygon(
        0 0,
        100% var(--tilt-desktop),
        100% 100%,
        0 100%
    );
    padding-top: 100px;

    @media (max-width: 767px) {
        clip-path: polygon(0 0, 100% var(--tilt-mobile), 100% 100%, 0 100%);
        -webkit-clip-path: polygon(
            0 0,
            100% var(--tilt-mobile),
            100% 100%,
            0 100%
        );
        padding-top: 80px;
    }
}

/* 🔹 Top-Right + Bottom-Left tilt */
.tilt-tl-br {
    --tilt-desktop: 3%;
    /* default */
    --tilt-mobile: 1%;

    clip-path: polygon(
        0 var(--tilt-desktop),
        /* top-left shifted down */ 100% 0,
        /* top-right */ 100% calc(100% - var(--tilt-desktop)),
        /* bottom-right shifted up */ 0 100% /* bottom-left */
    );
    -webkit-clip-path: polygon(
        0 var(--tilt-desktop),
        100% 0,
        100% calc(100% - var(--tilt-desktop)),
        0 100%
    );
    padding: 100px 0;
}

@media (max-width: 767px) {
    .tilt-tl-br {
        clip-path: polygon(
            0 var(--tilt-mobile),
            100% 0,
            100% calc(100% - var(--tilt-mobile)),
            0 100%
        );
        -webkit-clip-path: polygon(
            0 var(--tilt-mobile),
            100% 0,
            100% calc(100% - var(--tilt-mobile)),
            0 100%
        );
        padding: 60px 0px;
    }
}

/* 🔹 Top-Left + Bottom-Right tilt */
.tilt-tr-bl {
    --tilt-desktop: 3%;
    /* default */
    --tilt-mobile: 1%;

    clip-path: polygon(
        0 0,
        /* top-left */ 100% var(--tilt-desktop),
        /* top-right shifted down */ 100% 100%,
        /* bottom-right */ 0 calc(100% - var(--tilt-desktop))
            /* bottom-left shifted up */
    );
    -webkit-clip-path: polygon(
        0 0,
        100% var(--tilt-desktop),
        100% 100%,
        0 calc(100% - var(--tilt-desktop))
    );
    padding: 100px 0;
}

@media (max-width: 767px) {
    .tilt-tr-bl {
        clip-path: polygon(
            0 0,
            100% var(--tilt-mobile),
            100% 100%,
            0 calc(100% - var(--tilt-mobile))
        );
        -webkit-clip-path: polygon(
            0 0,
            100% var(--tilt-mobile),
            100% 100%,
            0 calc(100% - var(--tilt-mobile))
        );
        padding: 60px 0px;
    }
}

.custom-button {
    display: inline-block;
    width: fit-content;
    padding: 13px 32px 14px 32px !important;
    border-radius: 50px;
    font-weight: var(--btn-fw);
    font-size: var(--btn-fs);
    transition: all 0.4s ease;
    color: var(--white) !important;
    text-shadow: 0px 3px 5px rgba(101, 101, 101, 0.3);
    background-color: var(--tertiary-color);
    outline: none;
    border: none;
    cursor: pointer;
}

.custom-button:hover {
    color: var(--white);
    background-color: var(--primary-color);
}

section,
footer {
    overflow-x: hidden;
    overflow-y: visible;
}

section,
footer {
    padding: 80px 0px;

    @media (max-width: 767px) {
        padding: 40px 0px;
    }
}

.title-section {
    text-align: center;
}

.sub-title {
    font-weight: 600;
    color: #7a7e9d;
    font-size: 18px;
    margin-bottom: 7px;
}

.text-shadow {
    text-shadow: var(--text-shadow);
}

.gradient-text {
    background: linear-gradient(
        90deg,
        #1a2a4a 0%,
        #2f4e79 20%,
        #3a6ea5 40%,
        #5b89c2 60%,
        #7da7d9 80%,
        #a8c6f0 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.linear-blue-text {
    background: var(--linear-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.light-yellow-bg {
    background-color: var(--light-yellow);
}

.light-grey-bg {
    background-color: var(--light-grey);
}

.light-brown-bg {
    background-color: #f5f5f5;
}

.light-blue-bg {
    background-color: var(--light-blue);
}

.tertiary-bg {
    background-color: var(--tertiary-color);
}

.linear-blue-bg {
    background: var(--linear-bg);
}

.primary-bg {
    background-color: var(--primary-color);
}

img {
    width: 100%;
}

.image-wrapper {
    /* height: 100%;
    width: 100%; */
    overflow: hidden;
}

.image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top left;
}

.button-container {
    padding-top: 10px;
    display: flex;
    justify-content: center;

    @media (max-width: 767px) {
        padding-top: 25px;
    }
}

/* Base Arrow Styles */

/* Default desktop position */
.prev-arrow {
    left: -40px;
}

.next-arrow {
    right: -40px;
}

/* Mobile landscape / small tablets */
@media (max-width: 768px) {
    .prev-arrow {
        left: -20px;
    }

    .next-arrow {
        right: -20px;
    }
}

.form-select,
.form-control {
    border-radius: 8px;
    padding: 14px 20px;
    transition: all 0.3s ease;
    color: var(--placeholder);
    font-family: var(--accent-font);
    font-size: var(--paragraph-fs);
    font-weight: 500;
    line-height: 20px;
    border: 1.5px solid #b6b6b6;
}

.form-select-2,
.form-control-2 {
    padding: 7px 13px !important;
    width: fit-content;
}

textarea.form-control {
    border-radius: 8px;
}

/* .form-check .form-check-input {
    float: none !important;
    margin-left: 0px !important;
    border: 0.7px solid #a1acb6 !important;
} */
.form-check-input {
    margin-top: 0px;
    border: 1px solid var(--input-border) !important;
}

.form-check {
    display: flex;
    align-items: center;
    padding: 10px 0px 0px 0px;
}

.form-check .form-check-input {
    margin-left: 0px;
}

/* .form-select:focus,
.form-control:focus {
    border-color: var(--primary-color);
} */

.form-check-label {
    margin-left: 5px;
}

.option {
    color: #a5b1bf !important;
}
.sort-dropdown,
.currency-dropdown {
    font-size: 13px !important;
}
/* .sort-dropdown {
    padding: 7px 36px 7px 14px !important;
} */

/* .container {
  @media (min-width: 1280px) and (max-width: 1400px) {
    max-width: 96% !important;
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    max-width: 98% !important;
  }
} */

/** Global CSS styles ends **/
/**header css starts here **/
.header-top {
    background-color: var(--tertiary-color);
    padding: 3px 0px;
    overflow: hidden;
}

.header-top-left .social-list li a {
    height: 23px;
    width: 23px;
}

.header-top-left .social-list li a i {
    font-size: 12px;
}

.header-top-right {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
}

.header-top-right::after {
    position: absolute;
    content: "";
    background: var(--linear-blue);
    height: 150%;
    width: 1000%;
    top: -5px;
    left: -20px;
    z-index: -1;
    clip-path: polygon(14px 0, 100% 0%, 100% 100%, 0% 100%);
}

header {
    z-index: 10;
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    /* background-color: var(--white); */
    background-color: transparent !important;
    transition: all 0.3s ease !important;
}

header.sticky {
    position: sticky;
    background-color: var(--white) !important;
    /* z-index: 99999; */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0px 3px 15px rgba(150, 150, 150, 0.2);

    @media (max-width: 767px) {
    }
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 7px 0px; */
}

.logo {
    padding: 7px 0px;
}

.logo img {
    width: 150px;

    @media (max-width: 767px) {
        width: 130px;
    }
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: var(--black);
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

nav ul li:hover a {
    color: #0f5d9a;
}

.nav-list-item.active > a {
    color: var(--primary-color);
}

.nav-list-item.active > a i {
    color: var(--primary-color);
}

nav ul li a i {
    font-size: 12px;
    transition: all 0.3s ease;
    color: var(--caption-color);
}

nav ul li:hover a i {
    color: var(--secondary-color);
}

.nav-list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.nav-list-item {
    padding: 24px 0px;
    position: relative;
}

/* .mega-menu {
    border-top: 1px solid var(--tertiary-color);
    width: 70%;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 2;
    box-shadow: 0px 7px 20px -10px rgb(0 0 0 / 38%);
    background-color: var(--white);
    border-radius: 0px 0px 7px 7px;
    overflow: hidden;
    @media (max-width: 767px) {
        width: 100%;
    }
} */

.mega-menu-list {
    position: absolute;
    top: 100%;
    left: 63%;
    width: 75vw !important;
    z-index: 99999;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
    flex-direction: column;
    gap: 0;
    box-shadow: 0px 7px 20px -10px rgba(0, 0, 0, 0.38);
    background-color: var(--white);
    border-top: 1px solid var(--tertiary-color);
    border-radius: 0px 0px 5px 5px;
    overflow: hidden;

    /* combine both X and Y transforms */
    transform: translate(-50%, 7px) !important;

    /* smooth transition */
    transition: all 0.3s ease-in-out;
}

.mega-menu:hover .mega-menu-list {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    transform: translate(-50%, 0px) !important;
}

.mega-title {
    font-weight: 400;
    background: var(--linear-gradient);
    color: var(--white);
    display: inline;
    margin-bottom: 32px;
}

.mega-description {
    background-image: url("../assets/images/study-abroad-panel.png");
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px;
    height: 100%;
    display: inline-flex;
    gap: 0;
    flex-direction: column;
    flex-shrink: 0;
    min-width: 280px;
    justify-content: start;
    align-items: flex-start;

    @media (max-width: 767px) {
        padding: 20px;
    }
}

.mega-service {
    width: 100vw !important;
    margin: 0 auto;
    left: 50% !important;
    padding: 16px 0px 26px 0px;
}

.menu-line {
    outline: none;
    color: #d3d3d3;
    width: 100%;
    margin: 20px 0px 25px 1px;
}

.mega-service iconify-icon {
    font-size: 20px;
    /* color: var(--secondary-color); */
    color: #d3a902;
}

.mega-service .row .col-12 a {
    color: var(--primary-color);
    transition: all 0.3s ease;
    background-color: #eef5ff;
    padding: 16px 20px;
    border-radius: 4px;
}

.mega-service .row .col-12 a:hover {
    color: var(--black);
    background-color: rgba(255, 204, 0, 0.679);
}

.mega-service .row .col-12 a:hover iconify-icon {
    /* color: var(--secondary-color); */
    color: var(--black);
}

.mega-service .container > .row:first-of-type {
    padding: 24px 10px 32px 10px;
    background-color: #eef5ff;
    border-radius: 5px;
    margin-top: 20px;
}

.mega-service .row .col-12 .row .col-12 a {
    color: #4c4c4c;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px;
    padding: 3px 7px;
}

.mega-service .row .col-12 .row .col-12 a:hover {
    color: var(--primary-color);
}

.study-abroad-destination-item {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    width: 100%;
    padding: 20px;
    border-radius: 5px;

    /* background-color: #fafafa;
    border: 1.8px solid #00000008; */
    @media (max-width: 767px) {
        gap: 7px;
        /* background-color: var(--light-grey); */
        border-radius: 3px;
        height: 100%;
        align-items: center;
        padding: 20px;
    }
}

.study-abroad-destinations a {
    width: 100% !important;
}

.study-abroad-destination-item:hover {
    background-color: rgba(255, 240, 179, 0.918);
}

@media (max-width: 767px) {
    .study-abroad-destination-item small {
        display: none;
    }
}

/* .study-abroad-destinations {
    padding: 40px;

    @media (max-width: 767px) {
        padding: 20px;
    }
} */

.study-abroad-destination-item img {
    height: 28px;
    width: 28px;
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.1));
    /* @media (max-width: 767px) {
        height: 36px;
        width: 36px;
    } */
}

.study-abroad-destination-item h6 {
    font-size: 16px;
    margin: 0 !important;
}

.study-abroad-destination-item small {
    color: var(--paragraph-color) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
}

/* .nav-list li:last-child {
    padding: 0;
    margin-left: 20px;

    @media (max-width: 767px) {
        margin-left: 0;
    }
} */
.main-title {
    font-weight: 800;
    letter-spacing: -1px;
}

.nav-child-list {
    position: absolute;
    top: 100%;
    min-width: 100%;
    left: 0;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    flex-direction: column;
    width: fit-content;
    /* box-shadow: 0px 3px 14px rgba(0, 0, 0, 0.25); */
    box-shadow: 0px 7px 20px -10px rgb(0 0 0 / 38%);

    background-color: var(--white);
    padding: 16px;
    gap: 0;
    transform: translateY(7px);
    transition: all 0.3s ease-in-out;
    border-top: 1px solid var(--tertiary-color);
    border-radius: 0px 0px 7px 7px;
}

.nav-second-child-list {
    /* position: absolute; */
    top: 100%;
    min-width: 100%;
    left: 0;
    z-index: 2;
    /* opacity: 0; */
    /* visibility: hidden; */
    pointer-events: none;
    flex-direction: column;
    width: fit-content;
    /* box-shadow: 0px 3px 14px rgba(0, 0, 0, 0.25); */
    /* box-shadow: 0px 7px 20px -10px rgb(0 0 0 / 38%); */

    /* background-color: var(--white); */
    padding: 0;
    padding-left: 24px;
    padding-bottom: 7px !important;
    gap: 0;
    /* transform: translateY(7px); */
    transition: all 0.3s ease-in-out;
    /* border-top: 1px solid var(--tertiary-color); */
    /* border-radius: 0px 0px 7px 7px; */
}

.nav-second-child-list li {
    border-bottom: 1px solid #f3f3f3;
}

.nav-second-child-list li:last-child {
    border-bottom: none;
}

.nav-second-child-list li a {
    padding: 3px 0px !important;
}

.nav-second-child-list li a span {
    text-wrap: wrap !important;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

nav ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-child-list .nav-child-list-item {
    border-bottom: 1px dashed var(--grey);
}

.nav-child-list .nav-child-list-item a {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
}

.nav-child-list .nav-child-list-item a iconify-icon {
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;

    @media (max-width: 767px) {
        font-size: 20px;
    }
}

.nav-child-list .nav-child-list-item:last-child {
    border-bottom: none;
}

.nav-child-list .nav-child-list-item,
.nav-child-list li:last-child {
    border-radius: 0px;
    margin: 0;
}

.nav-list-item:hover {
    cursor: pointer;
}

.nav-list-item:hover i,
.nav-child-list-item:hover i {
    transform: rotate(-180deg);
}

nav ul li ul li:hover {
    background-color: var(--light-grey);
}

.nav-child-list-item:hover a {
    color: var(--secondary-color);
}

nav ul li ul li a {
    text-wrap: nowrap;
    padding: 14px 20px;
}

nav ul li:hover ul li a {
    color: var(--black);
}

/**css for hamberger menu and navbar starts --mobile menu --**/
.hamberger-menu {
    padding: 6px 8px 6px 8px;
    border-radius: 7px;
    display: none;

    @media (max-width: 767px) {
        display: inline-flex;
        justify-content: center;
        align-content: center;
    }
}

.hamberger-menu:hover {
    cursor: pointer;
}

.hamberger-menu i {
    font-size: 24px;
    background: var(--linear-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-logo,
.nav-close-icon {
    display: none;
}

@media (max-width: 767px) {
    .nav-close-icon {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 12;
        display: block;
        background-color: var(--white);

        transform: translateX(100%);
        width: 70%;
        height: 100vh;
        padding: 30px;
        transition: transform 0.5s ease-in-out;
    }

    .menu-active {
        transform: translateX(0);
    }

    .nav-item-wrapper {
        max-height: calc(100vh - 136px);
        overflow: auto;

        /* Hide scrollbar for Chrome, Edge, Safari */
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */
    }

    .nav-item-wrapper::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    .mobile-logo {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        padding-bottom: 12px;
        margin-bottom: 24px;
        top: 0;
        left: 0;
        background-color: var(--white);
    }

    .mobile-logo img {
        width: 210px;
    }

    .nav-list {
        flex-direction: column;
        align-items: start;
        gap: 7px;
        z-index: 5;
        padding-bottom: 100px;
    }

    /* .nav-list li:last-child {
        margin-top: 16px;
    } */

    .nav-list-item {
        width: 100%;
        padding: 16px 0px;
    }

    .nav-list-item a {
        justify-content: space-between;
        padding: 13px 0px;
    }

    .nav-list-item:last-child a {
        display: inline-flex;
    }

    .nav-list > .nav-list-item {
        padding: 0;
    }

    .nav-child-list {
        position: relative;
        display: flex;
        width: 100%;
        margin: 0;
        box-shadow: none;
        background-color: #f8f8f8;
        border-radius: 0;
        gap: 0;
        border-radius: var(--border-radius-1);
        padding: 7px 18px;
    }

    .nav-list-item a i {
        margin-right: 10px;
    }

    .nav-child-list-item a {
        border-bottom: 1px solid var(--white);
        border-radius: 0 !important;
        padding: 10px 0px !important;
        width: 100%;
    }

    .nav-child-list-item {
        border-bottom: 1px solid var(--white);
        border-radius: 0 !important;
        padding: 0 !important;
    }

    .nav-child-list-item:hover {
        background-color: transparent;
    }

    .nav-child-list-item a:hover {
        color: #2253a5;
    }

    .nav-child-list li a {
        margin: 0;
        border-bottom: 0 !important;
    }

    .nav-close-icon {
        position: absolute;
        top: 0;
        right: 0;
        margin: 20px;
        padding: 5px 8px 3px 8px;
        border-radius: 7px;
    }

    .nav-close-icon:hover {
        cursor: pointer;
    }

    .nav-close-icon i {
        font-size: 24px;
        /* color: var(--primary-color); */
        background: var(--linear-blue);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .nav-list-item .nav-child-list {
        position: relative;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        display: flex;
        flex-direction: column;
        width: 100%;
        transform: translateY(0);
        margin: 0;
        box-shadow: none;
        /* background-color: #f8f8f8; */
        background-color: var(--bg-1);
        border-radius: var(--border-radius-1);
        gap: 0;
        padding: 5px 18px;
        max-height: 0;
        transition: max-height 0.5s ease;
        overflow: hidden;
    }

    .nav-list-item.active .nav-child-list {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-child-list-item a.active {
        color: var(--primary-color);
        font-weight: 600;
    }

    .nav-child-list-item a span {
        font-size: 15px;
    }
}

/**css for hamberger menu and navbar ends **/
/**header css ends here **/
/** Hero section styles starts **/
.hero {
    position: relative;
    height: 75vh;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    overflow: hidden;

    @media (max-width: 767px) {
        height: 70vh;
    }
}

.hero-content {
    position: relative;

    h1 {
        font-size: 42px;
    }

    @media (max-width: 767px) {
        padding-top: 40px;

        h1 {
            font-size: 27px;
        }
    }
}

.hero-content::after {
    content: url("../assets/icons/page-arrow.svg");
    position: absolute;
    top: -60px;
    left: 0px;
    width: 60px;
    height: 60px;

    @media (max-width: 767px) {
        top: -20px;
        width: 45px;
        height: 45px;
    }
}

.hero-image {
    height: 100%;
    width: auto;
    object-fit: contain;

    @media (max-width: 767px) {
        /* max-height: 320px !important; */
        object-fit: contain !important;
        margin-top: -10px;
    }
}

.hero .image-wrapper {
    @media (max-width: 767px) {
        max-height: 320px;
    }
}

.hero-content h4 {
    font-style: italic;
    font-weight: 500;
    position: relative;
}

/** Hero section styles ends**/
/**counter css starts here**/
.counter {
    margin-top: -70px;
    position: relative;
    z-index: 1;

    @media (max-width: 767px) {
        margin-top: -20px;
    }
}

.counter-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 26px 25px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: var(--Tertiary, #fc0);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.5);

    @media (max-width: 767px) {
        padding: 20px 16px;
    }
}

.counter-box h2 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 36px;

    @media (max-width: 767px) {
        margin-bottom: 10px;
        font-size: 32px;
    }
}

/**counter css ends here**/
/**upcoming events css starts here**/
.line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-clamp: 3;
    box-orient: vertical;
    display: box;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-clamp: 2;
    box-orient: vertical;
    display: box;
}

.event-card {
    padding: 24px;
    display: flex;
    flex-direction: column;

    border-radius: 10px;
    background: var(
        --light-grey-gradient,
        linear-gradient(118deg, #ececec 9.87%, #e5e3e3 101.65%)
    );
}
.event-card a {
    margin-top: auto;
}
.scroll-btn {
    color: #444 !important;
}

.scroll-btn,
.scroll-btn-variant-2 {
    width: 42px;
    height: 42px;
    padding: 0 !important;
    background: linear-gradient(118deg, #ececec 9.87%, #e5e3e3 101.65%);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: none;
    flex-shrink: 0;

    svg {
        display: none;
    }
}

.date {
    color: var(--silver-golden);

    font-weight: 500;
    margin-bottom: 7px;
}

.scroll-btn i {
    width: 28px;
    height: 28px;
    color: #444 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.scroll-btn-variant-2 iconify-icon {
    width: 28px;
    height: 28px;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.scroll-btn iconify-icon,
.scroll-btn-variant-2 iconify-icon {
    font-size: 24px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.scroll-btn iconify-icon,
.scroll-btn-variant-2 iconify-icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 0.5px;
}

.scroll-btn:hover {
    background: var(--primary-color);
    box-shadow: none;
}

.scroll-btn-variant-2:hover {
    background: var(--tertiary-color) !important;
    box-shadow: none;
}

.scroll-btn:hover i,
.scroll-btn:hover iconify-icon {
    color: var(--white);
}

/**upcoming events css ends here**/
/**find a course css starts here**/
.search-btn {
    padding: 13px 32px;
}

.search-btn:hover {
    box-shadow: none;
}

.search-btn::before {
    left: 32px !important;
}

.bg-cover {
    background-size: cover;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.bg-top-start {
    background-position: top left;
}

@media (max-width: 767px) {
    .bg-mobile-bottom-center {
        background-position: bottom center;
    }
}

.find-course-container {
    padding: 40px 114px 40px 80px;
    display: flex;
    flex-direction: column;

    @media (max-width: 767px) {
        padding: 24px 10px 45px 10px;
    }
}

.find-course {
    background-color: #265e9e12;
}

.find-course-section {
    background-image: url("../assets/background/find-a-course.jpg");
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    position: relative;
}

.find-course-section::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #03306fa5 50%, transparent 100%);
    z-index: 1;
    content: "";
}

.find-course-section .find-course-container {
    position: relative;
    z-index: 2;
}

.home-illustration {
    height: 550px;

    @media (max-width: 767px) {
        height: 350px;
    }
}

.home-illustration img {
    object-fit: contain !important;
    object-position: center !important;
    backdrop-filter: var(--drop-shadow);
}

.relative-reference {
    position: relative;

    @media (max-width: 767px) {
        padding-top: 20px;
    }
}

.relative-reference .circle-text-wrapper {
    position: absolute;
    top: 10px;
    left: 10px;
    margin: 0;

    @media (max-width: 767px) {
        top: 10px;
        left: 10px;
    }
}

.circle {
    position: relative;
    width: 150px;
    /* circle size */
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    @media (max-width: 767px) {
        height: 100px;
        width: 100px;
    }
}

.center-item {
    width: 50px;
    height: 50px;
}

.text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    animation: rotateLinear 8s linear infinite;
}

@keyframes rotateLinear {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.text span {
    position: absolute;
    left: 50%;
    top: 16px;
    transform-origin: 0 60px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--tertiary-font);
    color: var(--black);

    @media (max-width: 767px) {
        top: 1px;
        transform-origin: 0 50px;
    }
}

/**why us css starts here**/
.light-blue-grey {
    background-color: #dce2ea45;
}

.why-us {
    background-image: url(../assets/images/why-us.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.title {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.why-card img {
    width: 50px;
    height: 50px;
}

.why-card {
    display: flex;
    flex-direction: column;
    gap: 5px;

    @media (max-width: 767px) {
        justify-content: center;
        text-align: center;
        align-items: center;
    }
}

/* @media (max-width: 767px) {
    .why-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
} */
/**why us css ends here**/
/**destination css starts here**/
@media (min-width: 576px) {
    .w-sm-50 {
        width: 50% !important;
    }
}

.text-highlight {
    position: relative;
    z-index: 0;
}

.text-highlight::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 9px;
    background-color: var(--tertiary-color);
    z-index: -1;
    margin-bottom: 9px;

    @media (max-width: 767px) {
        height: 6px;
    }
}

.text-highlight-p::after {
    margin-bottom: 4px !important;
    height: 4px;
}

.destination-card {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    min-height: 450px;
    z-index: 0;
    position: relative;
    overflow: hidden;
    border-radius: 10px;

    @media (max-width: 767px) {
        min-height: 450px;
        padding: 14px;
    }
}

.destination-card-variant-2 {
    min-height: 380px;
    padding: 20px;
    border-radius: 5px;

    @media (max-width: 767px) {
        min-height: 280px;
        padding: 14px;
    }

    h6 {
        margin-bottom: 7px !important;
    }
}

.destination-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 36%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 30%,
        rgba(0, 0, 0, 0.25) 60%,
        transparent 100%
    );
    z-index: 0;
}

/* Default overlay (hidden below) */
.destination-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
    opacity: 1;
    transform: translateY(100%);
    transition: transform 0.6s ease-in-out;
    /* fallback if animation not supported */
}

/* Hover animation trigger */
.destination-card:hover::after {
    animation: slideUp 0.6s ease-in-out forwards;
}

/* When hover ends, slide back down */
.destination-card:not(:hover)::after {
    animation: slideDown 0.6s ease-in-out forwards;
}

/* --- Keyframes for smooth overlay motion --- */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0.6;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100%);
        opacity: 0.6;
    }
}

.destination-circle-text-wrapper .circle {
    width: 100% !important;
    height: 100% !important;
}

.destination-circle-text-wrapper .circle .center-item {
    width: 100% !important;
    height: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.destination-circle-text-wrapper .circle .center-item p {
    transition: all 0.3s ease;
    margin: 0;
}

.destination-circle-text-wrapper .circle .text span {
    position: absolute;
    left: 50%;
    top: -10px !important;
    transform-origin: 0 35px;
    font-size: 10px !important;
    font-weight: 400;
    font-family: var(--tertiary-font);
    color: var(--black);
    transition: all 0.3s ease;
}

.destination-card:hover {
    cursor: pointer;
}

.destination-card:hover .circle p,
.destination-card:hover .circle .text span {
    color: var(--tertiary-color);
}

.destination-card-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 7px;
    align-items: end;
    z-index: 3;
    justify-content: space-between;
    width: 100%;
}

.destination-card .circle-tag {
    position: absolute;
    content: "";
    top: 28px;
    left: 28px;
    height: 50px;
    width: 50px;
    z-index: 3;

    transition: width 0.6s ease-in-out, height 0.6s ease-in-out;

    @media (max-width: 767px) {
        top: 14px;
        left: 14px;
    }
}

.destination-card:hover .circle-tag {
    height: 80%;
    width: 82%;
    display: flex;
    justify-content: center;
    align-items: center;

    @media (max-width: 767px) {
        height: 89%;
        width: 90%;
    }
}

/* Inner yellow circle (always centered) */
.destination-card .destination-circle-text-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: scaleBack 0.6s ease-in-out forwards;
}

/* Hover animation */
.destination-card:hover .destination-circle-text-wrapper {
    animation: scaleUp 0.6s ease-in-out forwards;
}

/* Keyframes */
@keyframes scaleUp {
    from {
        transform: translate(-50%, -50%) scale(1);
    }

    to {
        transform: translate(-50%, -50%) scale(2);
    }
}

@keyframes scaleBack {
    from {
        transform: translate(-50%, -50%) scale(2);
    }

    to {
        transform: translate(-50%, -50%) scale(1);
    }
}

.country-btn {
    background: none !important;
    background-color: var(--tertiary-color) !important;
}

.country-btn:hover {
    background-color: var(--white) !important;
}

.country-btn:hover iconify-icon {
    color: var(--black) !important;
}

.country p {
    margin: 0;
}

.country-tag {
    font-weight: 500;
    color: var(--black);
    font-size: 14px;
}

/**destination css ends here**/
/**test prep css starts here**/
.test-preparation-container {
    display: flex;
    flex-direction: row;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    width: 65%;
    margin: auto;

    @media (max-width: 767px) {
        width: 100%;
    }
}

.test-preparation-container img {
    width: fit-content;
    height: 100px;
    position: relative;

    @media (max-width: 767px) {
        height: 85px;
    }
}

.test-preparation-container .test-prep-item {
    position: relative;
    overflow: hidden;
}

.test-prep-item:hover {
    cursor: pointer;
}

.test-preparation-container .test-prep-item::after {
    position: absolute;
    content: "";
    background-color: var(--light-grey);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: translateY(100%);
    transition: all 0.3s ease-in-out;
}

.test-prep-item:hover::after {
    transform: translateY(0);
}

.test-prep-item:hover img {
    filter: drop-shadow(0px 1px 3px rgb(216, 216, 216));
}

.table-of-content ul {
    list-style: disc !important;
    display: flex;
    flex-direction: column;
    gap: 3px !important;
    list-style-position: inside !important;
}

.table-of-content ul li {
    padding: 0 !important;
    margin: 0 !important;
}
tr,th,td {
    padding: 14px 30px !important;
}
.table-of-content {
    padding: 30px;
    /* background-color: rgb(230 238 255); */
    background-color: #f5f5f5;
    border-radius: 7px;
    height: 83vh;
    /* border: 2px solid #dce0ff; */
    /* box-shadow: 1px 7px 16px rgb(236 245 255); */

    @media (max-width: 768px) {
        padding: 20px;
        height: fit-content !important;
    }

    h3 {
        font-size: 20px;
    font-weight: 900 !important;
    color: var(--primary-color);
    }
}

/* .table-of-content ul li::marker {
    color: blue !important;
} */
.table-of-content ul li a {
    color: #2b2b87;
    text-decoration: none !important;
}
.table-of-content ul li::marker {
    color: #2b2b87 !important;
}
.table-of-content ul li a:hover {
    color: #133ac1;
    text-decoration: underline !important;
}

.table-of-content ul li::after,
.table-of-content ul li::before {
    display: none;
}

/* .test-prep-item:hover {
  background-color: #f5f9ff;
} */
/**test prep css ends here**/
/** services css starts here**/
.why-jrk-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 16px;

    h5,
    h6,
    h4 {
        margin: 0 !important;
        font-weight: 700 !important;
    }
}

.why-jrk-card .icon {
    padding: 10px;
    border-radius: 50%;
    background-color: var(--tertiary-color);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trust-card {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #ebefff;
    box-shadow: 2px 3px 0px rgb(56 100 180);
    border-radius: 7px;
}

.trust-card i {
    font-size: 28px;
    color: var(--black);
    padding: 5px;
    border-radius: 50%;
}

.body-content .service-item:nth-child(even) {
    background-color: #eef7ff;
}

/**university service css starts here**/
.university-content-box {
    padding: 30px;
    background-color: #f5f5f5;
    border-radius: 7px;
}

.model-box {
    padding: 20px;
    border-radius: 7px;
    background-color: #ebefff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 3px solid var(--primary-color);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.model-box:hover {
    transform: translateY(-3px);
    cursor: pointer;
}

.model-box .number {
    padding: 7px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1rem;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 45px;
    color: var(--white);
    background-color: var(--primary-color);
}

/* .model-box:hover .number {
    background-color: var(--tertiary-color);
    color: var(--black);
} */
.rect-line {
    height: 5px;
    width: 75px;
    background-color: var(--black);
    margin: 0px 0px 20px 0px;
    outline: none;
    opacity: 1;
    border: none;
}

.caption-color {
    color: #333 !important;
    font-weight: 500;
}

.university-network {
    background-color: var(--primary-color);
    /* background-image: url("../assets/images/network.jpg"); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.university-network::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.486); */
    z-index: 2;
}

.university-network .container {
    z-index: 3;
    position: relative;
}

.service-card {
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 7px;
    background-color: rgba(0, 0, 0, 0.764);
    border: 2px solid rgb(44, 44, 44);

    @media (max-width: 1400px) {
        padding: 30px 28px;
    }

    @media (max-width: 767px) {
        padding: 28px;
    }
}

.service {
    background-image: url("../assets/background/service-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.service::after {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(2, 23, 78, 0.5);
    z-index: -1;
    position: absolute;
    content: "";
}

.service .container {
    z-index: 1;
    position: relative;
}

.service-card button:hover {
    box-shadow: none !important;
}

.service-card img {
    width: 60px;
    height: 60px;
}

.custom-list {
    list-style: none;
    padding-left: 1.5em;
}

.custom-list li {
    position: relative;
    margin-bottom: 0.5em;
}

.custom-list li::before {
    content: "*";
    position: absolute;
    top: 1px;
    left: -1.5em;
    width: 18px;
    height: 18px;
    /* font-size: 16px; */
}

.service-list li::before {
    content: url("../assets/icons/service-list-icon.svg") !important;
    transform: scale(1.2);
}

.service-list li {
    color: var(--white);
    margin-bottom: 14px !important;
}

/** services css ends here**/
/** video section css starts here**/
.dotted-line {
    width: 151px;
    height: 1px;
    border-bottom: 1px dashed #e5dfa7;
    background: none;
    outline: none;
    border-top: none !important;
    opacity: 1 !important;
    margin: 30px 0px;

    @media (max-width: 767px) {
        margin: 14px 0px;
        width: 50%;
    }
}

.solid-line {
    width: 151px;
    height: 1px;
    border-bottom: 1px solid #dbdbdb;
    background: none;
    outline: none;
    border-top: none !important;
    opacity: 1 !important;
    margin: 30px 0px 24px 0px;

    @media (max-width: 767px) {
        margin: 14px 0px;
        width: 50%;
    }
}

.testimonial-item {
    position: relative;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    border-radius: 10px;
    /* border:  1.5px solid #ffffff; */
    z-index: 0;

    /* box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.4); */
    height: 450px;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    overflow: hidden;
    transition: all 0.3s ease;

    @media (max-width: 1400px) {
        height: 370px;
    }
}

.testimonial-item .play-btn {
    height: 36px !important;
    width: 36px !important;
}

.testimonial-item:hover {
    cursor: pointer;
}

.testimonial-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 36%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.65) 30%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.35) 70%,
        rgba(0, 0, 0, 0.15) 80%,
        rgba(0, 0, 0, 0) 100%
    );

    border-radius: 7px;
    z-index: 1;
}

.testimonial-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.12);

    border-radius: 7px;
    transform: translateY(100%);
    z-index: 1;
    transition: all 0.3s ease;
}

.testimonial-item:hover::before {
    transform: translateY(0);
}

/**apply now cta css starts here**/

/* Hover animation */
.apply-btn {
    padding: 14px 36px;
}

.apply-btn::before {
    left: 36px;
}

.apply-now-cta {
    padding: 50px 200px;
    border-radius: 7px;
    background-image: url("../assets/images/apply-now-bg.png");
    background-position: top left;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.35);

    @media (max-width: 767px) {
        padding: 40px 28px;
    }
}

.text-quote {
    position: relative;
    line-height: 30px;
}

.text-quote .first-word {
    position: relative;
    display: inline-block;
}

.text-quote .first-word::before {
    position: absolute;
    content: url("../assets/icons/quote-start.svg");
    top: -3px;
    left: -20px;
}

.text-quote .last-word {
    position: relative;
    display: inline-block;
}

.text-quote .last-word::before {
    content: url("../assets/icons/quote-end.svg");
    position: absolute;
    right: -20px;
    top: -3px;
}

/**smaller**/
.text-quote-small {
    position: relative;
}

.text-half {
    width: 75%;

    @media (max-width: 767px) {
        width: 100%;
    }
}

.text-medium {
    font-weight: 600;
}

.p-cta {
    padding: 50px 30px;
}

@media (max-width: 767px) {
    .p-cta {
        padding: 30px 16px;
    }
}

.text-quote-small .first-word,
.text-quote-small .last-word {
    position: relative;
    display: inline-block;
}

.text-quote-small .first-word::before {
    position: absolute;
    content: url("../assets/icons/quote-start.svg");
    top: -2px;
    left: -18px;
    transform: scale(0.8);
}

.text-quote-small .last-word::before {
    position: absolute;
    content: url("../assets/icons/quote-end.svg");
    top: -2px;
    right: -18px;
    transform: scale(0.8);
}

/** video section css ends here**/
/**blog css starts here **/
/**main blog css starts here**/
.blog {
    background-image: url("../assets/background/blog-bg.svg");
    background-position: top left;
    background-size: cover;
    background-repeat: no-repeat;

}

.blog-card .image-wrapper {
    height: 220px;
    width: 100%;
}

.blog-card {
    border-radius: 10px;
    box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.15);
    overflow: hidden;
    text-decoration: none;
    color: var(--paragraph-color);
    transition: all 0.3s ease;
    display: block !important;
    /* flex-direction: row !important; */
    /* flex-wrap: nowrap; */
    /* gap: 10px !important; */
    /* align-items: center !important; */
    text-wrap: wrap !important;
}

.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: var(--white);
}

.blog-content h6 {
    margin: 0;
    color: var(--body-color);
    font-family: var(--secondary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
}

.blog-card:hover .blog-content h6 {
    color: var(--black);
}

.blog-card .image-wrapper img {
    transition: transform 0.3s ease-in-out;
    transform: scale(1);
}

.blog-card .image-wrapper {
    transition: all 0.3s ease;
    position: relative;
}

.blog-card .image-wrapper::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
}

.blog-card:hover .image-wrapper::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.blog-card:hover .image-wrapper img {
    transform: scale(1.1);
}

/**main blog css ends here**/
/* Categories */
.categories {
    margin: 40px auto;
    text-align: center;
}

.cat-btn {
    padding: 10px 18px;
    margin: 5px;
    border-radius: 24px;
    border: 1px solid #999;
    background: #fafafa;
    color: #333;
    cursor: pointer;
    transition: 0.3s;
}

.cat-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.cat-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* margin-bottom: 60px; */
}

.blog-card-2 {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 9px rgb(0 0 0 / 22%);
    transition: transform 0.3s;
}

.blog-card-2 .btn-variant-3::before {
    padding-left: 62px !important;

    @media (max-width: 767px) {
        padding-left: 114px !important;
    }
}

.blog-card-2 .date {
    font-size: 13px;
    color: #555;
    font-weight: 600;
}

.blog-card-2 .btn-variant-3 img {
    height: 14px !important;
    width: 14px !important;
}

.blog-card-2:hover {
    transform: translateY(-5px);
}

.blog-card-2 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-card-2 .content {
    padding: 20px;
    display: inline-flex;
    flex-direction: column;
    gap: 0;
}

.badge {
    background: #e8eeff;
    color: #0055ff;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
}

.blog-card-2 h3 {
    margin: 12px 0;
    font-size: 20px;
}

.blog-card-2 p {
    font-size: 14px;
    color: #555;
}

/* .blog-page-content {
    background-color: #fafafa;
} */
.blog-page-content h5 {
    font-weight: 600 !important;
    font-size: 24px;
}

.blog-page-content h6 {
    font-size: 16px;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
}
.blog-main {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 30px;
}
.body-content a:has(button),
.blog-page-content a:has(button) {
    text-decoration: none !important;
}

.body-content .blog-page-content ul li::after {
    /* content: "•" !important; */
    /* content: url(../assets/icons/service-list-icon-2.svg) !important; */
    height: 16px !important;
    width: 16px !important;
    font-size: 20px;
    display: block;
    position: absolute;
    top: -4px;
    left: 0;
}

.body-content .blog-content ul {
    gap: 5px !important;
}

.body-content .blog-content p {
    line-height: 1.3 !important;
}

.blog-page-content a {
    font-weight: 500;
    color: #1462e0;
    font-size: 16px;
    text-decoration: underline;
}

.blog-page-content a:hover {
    color: #1a67e4;
    font-size: 16px;
    cursor: pointer;
}

table {
    width: 100%;
    border-collapse: collapse;
    /* border: 1px solid #c8c8c8; */
    margin-bottom: 20px;
    border-radius: 3px;
}

thead {
    background-color: #f5f5f5;
    color:#333;
}

tr,
td,
th {
    padding: 16px 30px;
    border: 1px solid #c3c3c3;
    @media (max-width: 767px) {
        padding: 7px 14px !important;
    }
}
   .event-card-item h3 {
            color: #333 !important;
            font-size: 20px !important;
        }

/**css for popular blogs**/
.popular-blog-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-blog-item {
    display: flex;
    gap: 12px;
    text-decoration: none !important;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    /* border-bottom: 1px solid #eee; */
    margin-bottom: 12px;

     
        text-wrap: wrap !important;
    
}

.popular-blog-item .info h6 {
  
        margin: 0;
    
}
.popular-blog-item:hover .info h6 {
    color: var(--secondary-color);
}
.popular-blog-item:last-child {
    border-bottom: none;
}

.popular-blog-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    transition: all 0.3s ease;
}


.popular-blog-item .info a {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.popular-blog-item .info a:hover {
    color: var(--secondary-color);
}

.popular-blog-item .info small {
    font-size: 13px;
    color: #777;
    margin-top: 4px;
    display: inline-block;
}

.tag-container {
    margin-top: 20px;
}

.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-btn {
    background-color: #e9e9e9 !important;
    background: none;
    color: #383838 !important;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s ease;
}

.tag-btn:hover {
    background-color: var(--tertiary-color) !important;
    color: var(--black) !important;
    background: none;
    box-shadow: none;
}

.blog-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    justify-content: space-between;
    gap: 10px;
}

/* Badge */

.blog-badge {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 3px;
    align-items: center;

    span {
        color: #333;
    }
}

.blog-badge .blog-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 24px;
    background-color: #e8e8e8;
    border-radius: 50%;
    padding: 4px;

    svg {
        color: #5e5e5e;
    }
}

/* Author + Date */
.blog-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

/* Share */
.share-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;

    span {
        font-weight: 500;
    }
}

.share-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    height: 24px;
    width: 24px;
    padding: 3px;
    text-decoration: none;
    background-color: #e5e5e5;
}

.share-links a i {
    font-size: 14px;
    color: #0848a2;
}

/**css for blog section ends here**/
/* Footer */
.footer {
    background: #fff;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #ddd;
}

.footer h2 {
    font-size: 28px;
}

.footer p {
    margin: 10px 0 20px;
    font-size: 16px;
    color: #666;
}

.cta-btn {
    padding: 14px 30px;
    background: #0055ff;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

/* .body-content ul li::before {
    content: none !important;
} */

.body-content .pagination .page-item::after,
.body-content .pagination .page-item::before {
    display: none !important;
    content: url("") !important;
}

.body-content .pagination .page-item {
    padding-left: 0px !important;
}

.pagination {
    display: flex !important;
    flex-direction: row !important;
    gap: 7px !important;
}

/**blog css ends here **/
/**single blog post css starts here**/

/**single blog post css ends here**/
/**partner university css starts here**/
/* .university-container {
    display: flex;
    flex-direction: row;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;

    @media (max-width: 767px) {
        width: 100%;
        gap: 20px;
    }
} */

.university-container img {
    width: 100%;
    height: 50px;
    object-fit: contain;

    @media (max-width: 767px) {
        height: 36px;
    }
}

/* .swiper-wrapper {
    justify-content: center;
} */
/* .university-swiper .swiper-wrapper {
    width: auto !important;
}*/
/* @media (min-width: 1400px) {
    .university-swiper {
        max-width: 80%;
    }
    .industry-swiper {
        max-width: 80%;
    }
}
@media (max-width: 767px) {
    .university-swiper {
        max-width: 98%;
    }
    .industry-swiper {
        max-width: 98%;
    }
} */

.university-swiper .swiper-wrapper {
    margin-top: 20px;
    margin: 20px 7px 10px 7px;
        
}

.university-swiper .swiper-wrapper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 2px solid #eaeaea; */
    box-shadow: 0px 1px 3px rgb(216, 216, 216);
    padding: 16px 10px;
    border-radius: 3px;
}

.industry-swiper .swiper-wrapper {
    padding: 10px;
    margin: 0px -15px 0px -15px;
    justify-content: center;
}

.industry-swiper .swiper-wrapper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 2px solid #eaeaea; */
    padding: 7px;
    width: 243.2px;
    background-color: rgb(255 255 255);
    box-shadow: rgba(0, 0, 0, 0.23) 0px 3px 10px;
    margin-right: 20px;
    padding: 18px;
    border-radius: 4px;
    margin: 10px;
}

.industry-swiper .swiper-wrapper .swiper-slide img {
    height: 60px;
    transform: scale(1);
    transition: all 0.3s ease;
}

.industry-swiper .swiper-wrapper .swiper-slide:hover img {
    transform: scale(1.1);
}

.certified-members {
    padding: 30px;
    /* background-color: #ebebeb14; */
    background-color: #ebebeb03;
    border-radius: 4px;
    margin-bottom: 15px;
    /* box-shadow: 0px 3px 7px rgb(0, 0, 0, 0.06); */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(10px);

    @media (max-width: 767px) {
        padding: 20px;
        gap: 14px;
    }
}

.certified-members-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;

    @media (max-width: 767px) {
        width: 100%;
        gap: 16px;
    }
}

.certified-members-container .certified-member-item {
    padding: 7px;
    /* border: 2px solid #eaeaea; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.certified-members-container .certified-member-item img {
    height: 80px;
    width: 100% !important;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.13));
    transition: all 0.3s ease;
    transform: scale(1);
    border-radius: 3px;

    @media (max-width: 767px) {
        height: 65px;
    }
}

.certified-members-container .certified-member-item:last-child img {
    height: 78px;

    @media (max-width: 767px) {
        height: 63px;
    }
}

.certified-member-item:hover {
    cursor: pointer;

    img {
        transform: scale(1.1);
    }
}

.certified-badge {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 7px;
    align-items: center;
    justify-content: center;

    img {
        width: 24px;
        height: 24px;
        filter: drop-shadow(0px 3px 7px rgba(0, 0, 0, 0.12));
    }

    h3,
    h4,
    h5,
    h6 {
        margin: 0;
    }
}

.body-content .courses-list li::before {
    content: url("../assets/icons/tick.svg") !important;
    transform: translate(-50%, -50%);
    top: 8px;
}

.body-content .scholarship-list li::before {
    content: url("../assets/icons/dot.svg") !important;
    transform: translate(-50%, -50%);
    top: 12px;
}

/**partner university css ends here**/
/**inquiry css starts here**/
.inquiry {
    background-color: var(--light-yellow);
    padding-bottom: 0px !important;
}

.home-submit-button {
    @media (max-width: 767px) {
        width: 100%;
        margin-top: 10px;
    }
}

/**inquiry css ends here**/
/**event listing css starts here**/
/* Event Grid */
.event-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile: 1 column */
    gap: 30px;
    margin-top: 30px;
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop: 3 columns */
@media (min-width: 1200px) {
    .event-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Event Card */
.event-card-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); */
    box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.15);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

/* Hover Effect */
.event-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.2);
}

.event-card-item .btn-variant-3::before {
    padding-left: 100px !important;

    @media (max-width: 767px) {
        padding-left: 97px !important;
    }
}

/* Card Image */
.event-card-item .event-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    min-height: 220px;
    background-color: #fafafa;
}

.event-card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    transition: transform 0.4s ease;
}

.event-card-item:hover img {
    transform: scale(1.05);
}

/* Card Content */
.event-card-item .content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Top Row: Date & Location */
.event-card-item .top {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    flex-direction: column;
    color: #555;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.event-card-item .top i {
    margin-right: 4px;
    color: #555;
}

/* Title */
.event-card-item h3 {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin: 0 0 10px 0;
    color: #222 !important;
    line-height: 1.3;
}

/* Description */
.event-card-item p {
    font-size: 15px;
    color: #555;
    flex-grow: 1;
}

/* Responsive Text */
@media (max-width: 480px) {
    .event-card-item img {
        height: 180px;
    }

    .event-card-item h3 {
        font-size: 18px;
    }

    .event-card-item p {
        font-size: 14px;
    }
}

/**event single page css starts here**/
.breadcrump-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrump-badge .badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff16 !important;
    color: var(--tertiary-color) !important;
    border-radius: 20px !important;
    gap: 0px;
    padding: 2px 10px 2px 3px !important;

    .icon {
        height: 24px;
        width: 24px;
        display: flex;
        place-content: center;
        border-radius: 50%;
        padding: 2px;

        img {
            width: 14px;
            height: 14px;
        }
    }
}

.event-banner {
    height: 420px;
    overflow: hidden;
    width: 100%;

    @media (max-width: 767px) {
        height: 220px;
    }
}

.event-aside .contact-form a {
    text-decoration: none;
}

.event-details {
    margin: 20px 0;
}

.event-info {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #555;
    row-gap: 10px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.event-item span {
    text-wrap: nowrap;
}

.event-item i {
    color: #484848;
    font-size: 14px;
}

.event-label {
    font-weight: 600;
    color: #484848;
    font-size: 14px;
}

.event-value {
    color: #484848;
    font-weight: 600;
    font-size: 14px;
}

/**event listing css ends here**/
/**footer css starts here**/

.contact-social-container {
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.body-content .contact-list li::before {
    content: none !important;
}

.body-content .contact-list {
    margin: 0 !important;
    padding: 0 !important;
}

.body-content .contact-list li {
    margin: 0 !important;
    padding: 0 !important;
}

.contact-box {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    align-items: center !important;
}

.contact-box span {
    position: relative;
    display: inline-block;
    text-wrap: wrap;
}

.contact-box span::after {
    content: "";
    position: absolute;
    left: 50%;
    /* start from center */
    bottom: 0;
    width: 0;
    /* initial width 0 */
    height: 2px;
    /* thickness of underline */
    background-color: currentColor;
    /* underline color */
    transition: width 0.3s ease, left 0.3s ease;
}

.contact-box:hover span::after {
    width: 100%;
    /* expand to full width */
    left: 0;
    /* grow from center to edges */
}

.contact-box .icon {
    height: 50px;
    width: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: var(--tertiary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-box {
    display: inline-flex;
    flex-direction: column;
    margin-top: 40px;

    @media (max-width: 767px) {
        margin-top: 20px;
    }
}

.contact-box .icon svg {
    color: var(--black);
}

/* .contact-box:hover .icon svg {
    color: var(--black);
} */
.contact-box span {
    color: var(--white);
    transition: all 0.3s ease;
}

.contact-box:hover span {
    color: var(--tertiary-color);
}

.contact-box:hover .icon {
    background-color: var(--tertiary-color);
}

.contact-social-list li a {
    border: 1px solid #dfdfdf !important;
    background-color: #f5f5f5;
}

.contact-social-list li a i {
    color: var(--primary-color) !important;
}

.contact-form label {
    color: #333;
}

.input-group-append {
    height: auto;
    width: 50px;
    background-color: var(--tertiary-color);
    justify-content: center;
    display: flex;
    align-items: center;
    border-radius: 0px 7px 7px 0px;
}

.newsletter-box {
    padding: 36px 0px;
    border-bottom: 0.5px dashed var(--white);
    margin: 0;

    @media (max-width: 767px) {
        padding: 30px 0px 20px 0px;
    }
}

#newsletterForm {
    position: relative;
}

#emailError,
#invalid-feedback {
    position: absolute;
    bottom: -26px;
    left: 0;
}

.input-group-append iconify-icon {
    font-size: 22px;
    color: var(--body-color);
}

.subscribe-btn {
    background: none !important;
    color: var(--body-color);
}

#newsletterForm input {
    border: none;
}

.subscribe-btn:hover {
    box-shadow: none !important;
}

.input-group-append {
    transition: all 0.3s ease;
}

.input-group-append:hover {
    box-shadow: inset 2px 3px 5px rgba(66, 66, 66, 0.3);
}

.input-group-append:hover button {
    color: var(--black);
}

form {
    width: 100%;
}

.copyright-text {
    font-size: 15.5px;
}

@media (max-width: 767px) {
    .copyright-text {
        font-size: 14px;
        font-weight: 550;
    }
}

footer {
    background-color: var(--primary-color);
    /* background-image: linear-gradient(
        to right top,
        #1c3664,
        #1e3465,
        #213366,
        #243167,
        #282f67
    ); */
}

.footer-country-list {
    margin-top: 16px;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px 14px;
    flex-wrap: wrap;

    @media (max-width: 767px) {
        justify-content: start;
    }
}

.footer-country-list li a {
    color: var(--white);
    font-family: var(--accent-font);
    font-size: var(--paragraph-fs);
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.footer-country-list li a:hover {
    color: var(--tertiary-color);
}

.quick-links .footer-country-list {
    gap: 32px;

    @media (max-width: 767px) {
        gap: 20px;
    }
}

.quick-links {
    padding: 30px 0px 40px 0px;
}

.quick-links .footer-country-list li a {
    text-transform: uppercase;
    font-weight: 500;
}

.quick-links .footer-country-list li:last-child a {
    position: relative;
}

/* Tooltip background text (always visible) */
.quick-links .footer-country-list li:last-child a::after {
    content: "JOIN OUR TEAM";
    position: absolute;
    top: -27px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--tertiary-color);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    padding: 0px 7px;
    border-radius: 5px;
    line-height: 20px;
    white-space: nowrap;
    opacity: 1;
}

/* Tooltip arrow (always visible) */
.quick-links .footer-country-list li:last-child a::before {
    content: "";
    position: absolute;
    top: -10px;
    height: 10px;
    width: 10px;
    left: 50%;
    transform: translateX(-50%);
    transform: rotate(45deg) translateX(-50%);
    /* border-width: 6px; */
    /* border-style: solid; */
    color: var(--tertiary-color);
    background-color: var(--tertiary-color);
}

@media (max-width: 767px) {
    .quick-links .footer-country-list li:last-child a::after {
        content: "JOIN OUR TEAM";
        position: absolute;
        top: -20px;
        line-height: 19px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--tertiary-color);
        color: var(--primary-color);
        font-size: 10px;
        font-weight: 700;
        padding: 0px 4px;
        border-radius: 4px;
        white-space: nowrap;
        opacity: 1;
    }

    .quick-links .footer-country-list li:last-child a::before {
        top: -5px;
    }
}

.footer-contact-list {
    list-style: none;
}

.footer-logo img {
    width: 200px;

    @media (max-width: 767px) {
        width: 180px;
    }
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 30px 0px;

    @media (max-width: 767px) {
        gap: 16px;
    }
}

.footer-contact-list-item {
    display: flex;
    gap: 7px;
    flex-direction: row;
    flex-wrap: nowrap;

    span {
        text-wrap: wrap;
    }
}

.footer-contact-list .footer-contact-list-item a {
    color: var(--white) !important;
}

.footer-contact-list-item a:hover {
    color: var(--tertiary-color) !important;
    /* text-decoration: underline; */
}

.footer-contact-list-item img {
    height: 20px;
    width: 20px;
}

.social-list {
    list-style: none !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 7px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.social-list li::before {
    display: none;
}

.footer-socials {
    gap: 10px !important;
}

.social-list li {
    padding: 0 !important;
    margin: 0 !important;
}

.social-list li a i {
    color: var(--black);
}

.social-list li a {
    height: 32px;
    width: 32px;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--black);
    padding: 10px;
}

.social-list li a:hover {
    background-color: var(--black);
    cursor: pointer;
}

.social-list li a:hover i {
    color: var(--white);
}

footer .social-list li a {
    color: var(--white);
    border: 1.5px solid var(--white) !important;
    height: 42px;
    width: 42px;
}

footer .social-list li a i {
    font-size: 18px;
    color: var(--white) !important;
}

.footer-socials li a:hover {
    background-color: var(--tertiary-color) !important;
    border: 1.5px solid var(--tertiary-color) !important;
    transform: translateY(-3px);
}

.footer-socials li a:hover i {
    color: var(--primary-color) !important;
}

.footer-list {
    list-style: none;
    list-style-position: inside;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 24px 0px;
}

.footer-list li {
    position: relative;
    padding-left: 20px;
}

/* .footer-list li a {
    font-weight: 450;
} */
.footer-list li:hover {
    cursor: pointer;
}

/*
.footer-list li:focus-within {
    border: 1px dotted #333;
    border-radius: 4px;
} */

/* .footer-list li a:focus::after {
    content: "";
    position: absolute;
    inset: -4px -8px;
    border: 2px dotted #333;
    border-radius: 7px;
    pointer-events: none;
}
.footer-list li a {
    position: relative;
} */
.footer-list li::before {
    position: absolute;
    top: 6px;
    left: 0;
    content: "";
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10s-4.477 10-10 10m0-2a8 8 0 1 0 0-16a8 8 0 0 0 0 16' stroke-width='2' stroke='currentColor'/></svg>")
        no-repeat center;
    height: 10px;
    width: 10px;
    background-size: contain;
}

.footer-list li:hover::before {
    /* background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10' fill='currentColor'/></svg>")
        no-repeat center; */
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10' fill='%23f49016'/></svg>")
        no-repeat center;

    background-size: contain;
    color: var(--legendary-color);
}

.footer-list li:hover a {
    color: var(--legendary-color);
    /* text-decoration: underline; */
}

.footer-left-col {
    border-right: 1px dashed var(--primary-color);

    @media (max-width: 767px) {
        border: none;
        margin-bottom: 20px;
    }
}

.footer-legal {
    padding: 20px 0px 24px 0px;
    border-top: 0.5px solid #8b9bb6;
}

.branch-container {
    display: inline-flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

.branch-title {
    display: flex;
    align-items: center;

    * {
        margin: 0;
        padding: 0;
    }
}

.branch-list {
    display: inline-flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    list-style: none;
}

.branch-list li {
    position: relative;
}

.branch-list li::after {
    position: absolute;
    content: "";
    top: 50%;
    right: -10px;
    height: 60%;
    width: 1px;
    transform: translate(-50%, -50%);
    background-color: white;
}

.branch-list li:last-child::after {
    display: none;
}

.branch-list li p {
    color: var(--white);
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}

.branch-list li a:hover p {
    color: var(--tertiary-color);
}

.branch-list li img {
    border-radius: 50%;
    border: 1px solid var(--white);
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-legal-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;

    @media (max-width: 767px) {
        gap: 16px;
    }
}

.footer-legal-list li {
    color: var(--paragraph-color);
}

.footer-legal-list li a {
    display: flex;
    flex-direction: row;
    gap: 5px !important;
    align-items: center;
    color: var(--white);
    font-weight: 400;
}

.footer-legal-list li a:hover {
    color: var(--tertiary-color);
}

/*
.footer-legal-list li a span {
    text-decoration: underline;
} */

.footer-legal-list li a i {
    font-size: 13px;
    font-weight: 600;
}

/**footer css ends here**/

/**breadcrump css starts here**/
.breadcrump-container {
    background-color: var(--light-grey);
    padding: 0;
    z-index: 0;
    position: relative;
}

/* .breadcrump-container::after {
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(6, 41, 90, 0.45);
    position: absolute;
    z-index: 0;
} */

.breadcrump-container .container {
    position: relative;
    z-index: 1;
}

.breadcrump-content {
    padding: 80px 0px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    align-items: center;

    @media (max-width: 767px) {
        padding: 40px 0px;
    }
}

.breadcrump-navigation {
    padding: 7px 0px;
    background-color: #00000086;
}

.breadcrump-list {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 5px;
    gap: 7px;
    list-style: none;
    margin: 0 auto;
}

.breadcrump-list li {
    padding-right: 24px;
    position: relative;
}

.breadcrump-list li a {
    color: #d9d9d9 !important;
    transition: all 0.3s ease;
}

.breadcrump-list li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='M4 12h2.5M20 12l-6-6m6 6l-6 6m6-6H9.5'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

.breadcrump-list li:last-child::after {
    content: none;
}

.filter-breadcrump {
    border: none;
    background-image: url("../assets/images/filter-bg.jpg");
    position: relative;
}

.filter-breadcrump::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.filter-breadcrump .container {
    position: relative;
    z-index: 1;
}

.breadcrump-list li:hover a {
    text-decoration: underline;
    color: var(--white);
}

.filter-breadcrump h1,
.filter-breadcrump ul li a {
    color: var(--white);
}

.filter-breadcrump .breadcrump-list li::after {
    color: var(--white);
}

/**breadcrump css ends here**/
/** find a university css starts here*/
.university-filter {
    padding: 30px;
    /* border: 1px solid #e5e5e5; */
    border-radius: 7px;
    /* background-color: #f9f5ff; */
    /* box-shadow: 5px 5px 0px rgb(188 198 255); */
    margin-bottom: 20px;

    @media (max-width: 767px) {
        padding: 20px 16px;
        /* box-shadow: 0px 0px 0px rgb(188 198 255); */
    }
}

.sort-dropdown {
    /* max-width: fit-content; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 3px !important;
            background-color: #fff !important;
}

/* .sort-dropdown option {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
} */

.university-listing {
    background-color: #f5f5f5;
}

.university-card {
    border-radius: 7px;
    padding: 30px;
    background-color: var(--white);
    border: 1px solid #e2e2e2;
    /* box-shadow: 0px 3px 10px rgb(198 192 192 / 50%); */
}

/* .university-card .image-wrapper {
    margin: 20px 0px 10px 0px;
}

.university-card .image-wrapper {
    height: 75px;
} */
.university {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    font-weight: 300 !important;
    p {
        margin: 0;
    }
}
.university-card .image-wrapper img {
    object-fit: contain;
    object-position: left center;
}

.university-card .university-country-tag {
    padding: 2px 10px 4px 10px;
    background: var(--linear-blue);
    border-radius: var(--border-radius-3);
    font-size: 12px;
    color: var(--white);
}

.icon-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.icon-list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

.readmore-button {
    padding: 5px 16px 7px 16px !important;
    font-size: 15px;
}

.icon {
    height: 14px;
    width: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon i {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.university-card .icon i {
    color: #d2b451;
    /* color: #818181; */
}

.course-name {
    color: var(--tertiary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    font-style: italic;
}

.university-card:hover {
    border: 1px solid #bec0d0cc;
}

.pagination {
    --bs-pagination-active-bg: var(--primary-color) !important;
    /* --bs-pagination-active-bg: #4b86b4 !important; */
    --bs-pagination-color: var(--primary-color) !important;
    --bs-pagination-hover-color: var(--primary-color) !important;
    --bs-pagination-focus-color: var(--primary-color) !important;
    --bs-pagination-hover-bg: #e6f0fa !important;
}

.university-pagination {
    padding: 10px;
    background-color: var(--white);
    border-radius: var(--border-radius-5);
    display: flex;
    gap: 10px;
    border: 1px solid #e2e2e2 !important;
}

.pagination .page-item .page-link {
    border-radius: 30px;
    border: none;
    line-height: 20px;
}

.pagination .page-item:not(:last-child),
.pagination .page-item .page-link:not(:last-child) {
    border-radius: 50%;
    height: 32px;
    width: 32px;
    display: flex;
    justify-content: center;
}

.pagination .page-item:first-child,
.pagination .page-item:last-child {
    width: fit-content !important;
}

/** find a university css ends here*/
/**destination-page detail css starts here**/
.body-content {
    width: 100%;
    height: 100%;
}

.tabs {
    padding: 8px 0px 5px 0px;
    position: sticky;
    top: 0;
    width: 100%;
    left: 0;
    background-color: var(--white);
    z-index: 3;

    /* box-shadow: 0px 3px 10px rgb(213, 213, 213); */
    @media (max-width: 767px) {
        top: 0;
    }

    box-shadow: 0px 1px 7px rgb(0, 0, 0, 0.16);
}

.tabs ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0px !important;
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: none;
    padding: 0;
    margin: 0 !important;
}

.tabs ul::-webkit-scrollbar {
    display: none;
}

.tabs ul li::before {
    display: none;
}

.tabs ul li {
    margin: 0;
    padding: 0px 0.5px;
    /* border-bottom: 1.5px solid #333; */
}

.tabs ul li:first-child {
    padding-left: 0 !important;
}

.tabs ul li:last-child {
    padding-right: 0 !important;
}

.tabs ul li a {
    padding: 3px 10px 5px 10px;
    margin: 0px 2px;
    border-radius: 4px 4px 0px 0px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    color: var(--black);
    font-weight: 400;
}

.tabs ul li:first-child a {
    margin-left: 0;
}

.tabs ul li:last-child a {
    margin-right: 0;
}

.tabs ul li a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.tabs ul li a.active {
    color: var(--white);
    background-color: var(--primary-color);
}

/* .tabs ul li a.active::after {
    background-color: #eee;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 2.5px;
    width: 100%;
    border-radius: 7px 7px 0px 0px;
    background-color: var(--primary-color);
} */

.destination-content section:last-child {
    border-bottom: none;
}

.caption {
    font-family: var(--secondary-font);
    letter-spacing: 0px !important;
    margin-bottom: 10px !important;
    color: var(--black);
    line-height: 2rem;
    font-size: 20px;
}

@media (max-width: 767px) {
    .caption {
        font-size: var(--paragraph-fs) !important;
        font-weight: var(--paragraph-fw) !important;
        line-height: 1.5 !important;
        color: var(--paragraph-color) !important;
    }
}

.popular-programs {
    padding: 20px;
    border-radius: 7px;
    background-color: #f3f3f3;
}

.study-abroad-apply-box {
    position: sticky;
    top: 160px;
    padding: 30px 20px;
    background: var(--linear-bg);
    border-radius: 7px;
    /* box-shadow: 6px 6px 0px #ffcc00; */
    box-shadow: 3px 12px 32px rgb(114 114 114 / 42%);

    @media (max-width: 767px) {
        padding: 14px 24px 30px 24px !important;
    }
}

.study-destination-cta {
    padding: 40px 30px !important;
    border-radius: 7px;
    background: var(--linear-bg);
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.35);

    @media (max-width: 767px) {
        padding: 30px 24px !important;
    }
}

@media (max-width: 767px) {
    .body-content {
        overflow: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }
}

.body-content section {
    overflow: visible !important;
}

/* .body-content {
    padding: 50px 0px;
    @media (max-width: 767px) {
        padding: 30px 0px;
    }
} */
.body-content h1,
.body-content h2,
.body-content h3,
.body-content h4,
.body-content h5,
.body-content h6 {
    margin-bottom: 14px;
    @media (max-width:767px) {
        margin-bottom: 10px;
        
    }
}

.body-content h2 {
    font-size: 28px !important;
    font-weight: 700 !important;
}
.body-content h3 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--primary-color);
}
.body-content h4 {
    font-size: 20px !important;
    font-weight: 700 !important;
}
.body-content strong {
    font-weight: 600 !important;
}
.body-content h5 {
    font-size: 18px !important;
    font-weight: 700 !important;
}
.body-content h6 {
    font-size: 16px !important;
    font-weight: 700 !important;
}
.test-pre-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    @media(max-width: 767px) {
        gap: 10px;
    }
}
.test-pre-content ul, .blog-page-content ul {
    list-style: disc;
    background-color: #f5f5f5;
    padding: 20px 20px 20px 36px;
    border-radius: 7px;
}
.test-pre-content ul li,.blog-page-content ul li {
    padding: 0px !important;
}
.test-pre-content ul li::after,.test-pre-content ul li::before{
    content: none !important;
}
.blog-page-content ul ul li::after,.blog-page-content ul li::before{
    content: none !important;
}
table thead tr {
    border-radius: 3px 3px 0px 0px;
}
table tbody tr:last-child {
    border-radius: 0px 0px 3px 3px;
}
/* .body-content h2,
.body-content h3 {
    margin: 30px 0 20px 0;
} */
/* .body-content h2:first-child {
    margin: 0 0 20px 0;
} */
.accordion-button {
    font-weight: 600;
    /* background: var(--bs-accordion-btn-bg) !important; */
    background: #ffe680 !important;
    color: var(--black);
    padding: 14px 20px !important;
    font-size: 16px;
    font-weight: 600;
    font-family: "Sora", sans-serif;
}

.accordion-button:hover {
    background-color: #ffe680 !important;
    color: var(--black);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: #ffe680 !important;
    color: var(--black) !important;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;

    /* --bs-accordion-btn-icon: url("{{ asset('assets/icons/circle-down.svg') }}");
    --bs-accordion-btn-active-icon: url("{{ asset('assets/icons/circle-close.svg') }}"); */
    /* --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); */
    --bs-accordion-btn-icon-width: 16px !important;
    --bs-accordion-border-width: 0px !important;
    --bs-accordion-border-color: #ffe680 !important;

    .accordion-item {
        /* margin-bottom: 16px; */
        /* border-radius: var(--border-radius-2);
        border: 1px solid #c1c1c1; */

        /* box-shadow: 0px 3px 10px #f9f0f9; */
        .accordion-header {
            margin-bottom: 0px;

            .accordion-button {
                /* border-radius: 14px 14px 0px 0px; */
                padding: 20px;
                text-wrap: wrap;
            }
        }
    }

    .accordion-button:focus {
        border: none;
        outline: none;
    }

    .accordion-body {
        /* padding: 0px 20px 20px 20px; */
        padding: 0px 20px 20px 36px;
        line-height: 1.5;
        background-color: #ffe680;
        color: var(--black) !important;
    }
}

.accordion .accordion-item {
    border: none !important;
    /* border-bottom: 1px solid #d7d7d7 !important; */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
}

.accordion .accordion-item:last-child {
    border-bottom: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--white);
    background-color: var(--tertiary-color);
}

.accordion-button.collapsed {
    /* border-radius: 14px !important; */
}

.accordion-button::after {
    background-position: center center;
    padding: 20px;
    background-color: var(--white);
    border-radius: 50%;

    @media (max-width: 767px) {
        right: -8px;
        position: relative;
    }
}

/*
.accordion-button::after:hover {
    background-color: #808080 !important;
} */
/**destination detail css ends here**/
/**about us css starts here**/
.mission-vision-box {
    /* padding: 30px; */
    /* border: 4px solid var(--black); */
    display: flex;
    flex-direction: column;
    gap: 10px;

    /* align-items: center;
    text-align: center; */
    @media (max-width: 767px) {
        align-items: center;
        text-align: center;
    }

    h2 {
        color: #222 !important;
    }

    p {
        color: #333 !important;
    }

    .rect-line {
        background-color: #222 !important;
    }
}

.vision-list {
    gap: 14px !important;
}

@media (max-width: 767px) {
    .vision-list {
        gap: 5px !important;
    }
}

.vision-list li {
    color: var(--paragraph-color) !important;
}

.vision-list li::before {
    content: url("../assets/icons/service-list-icon-2.svg") !important;
    height: 16px;
    width: 16px;
}

.border-dashed-top {
    border-top: 1px dashed #e3e3db;
}

.contact-cta {
    background: url("../assets/images/contact-cta.jpg") no-repeat center center;
    background-size: cover;
    position: relative;
}

.contact-cta::before {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    /* dark overlay */
    z-index: 0;
}

.contact-cta .container {
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    transition: all 0.4s ease;
    box-shadow: 1px 2px 7px rgb(227 227 227);
}

.feature-card h5 {
    margin-bottom: 10px !important;
}

.feature-card:hover {
    cursor: pointer;
    box-shadow: 1px 3px 10px rgb(184 184 184);
}

.feature-card .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--linear-blue);
}

.feature-card .icon i {
    font-size: 24px;
    height: auto;
    width: auto;
    color: var(--white);
}

.contact-cta {
    position: relative;
}

.contact-cta::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(3 31 72 / 73%);
    content: "";
    z-index: 0;
}

.team-member .image-wrapper {
    height: 400px !important;
    width: 100%;
    margin-bottom: 10px;
}

.team-member:hover {
    cursor: pointer;
}

.team-member img {
    transition: all 0.3s ease;
    transform: scale(1);
    object-position: top center !important;
}

.team-member:hover img {
    transform: scale(1.1);
}

.team-member h5 {
    margin-bottom: 0px;
}

/**about us css ends here**/

/**contact css starts here**/
.image-small img {
    height: 48px;
    width: 48px;
}

/* .contact-info {
    box-shadow: inset 0px 3px 15px rgba(150, 150, 150, 0.2);
} */
.contact-list {
    list-style: none;
    display: inline-flex;
    flex-direction: column;
    gap: 14px !important;
    margin-top: 10px;
    width: fit-content;
}

.contact-list li a .icon {
    height: 36px;
    width: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.contact-list li a .icon img {
    height: 20px;
    width: 20px;
    object-fit: contain;
    object-position: center center;
}

.contact-list li a span {
    color: var(--black);
}

.contact-info .image-wrapper {
    position: relative;
    border-radius: 0px 50% 0px 50%;
    width: 70%;
    overflow: hidden;

    @media (max-width: 767px) {
        width: 100%;
    }
}

.contact-info .image-wrapper::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 80%;
    width: 100%;
    background: var(--tertiary-color);
    z-index: -1;
    border-radius: 0px 50% 0px 50%;
}

.contact-info .image-wrapper img {
    height: 400px;
    width: 100%;
    z-index: 0;
}

#mapIframe {
    height: 420px;
    width: 100%;
    /* border-radius: var(--border-radius-3); */
    overflow: hidden;

    @media (max-width: 767px) {
        height: 320px;
        width: 100%;
    }
}

.contact-form-map {
    background-color: var(--tertiary-color);
}

.contact-social-list li a i {
    color: var(--tertiary-color);
}

.contact-social-list li a {
    height: 32px;
    width: 32px;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--tertiary-color);
    padding: 10px;
}

.contact-social-list li a:hover {
    background-color: var(--tertiary-color);
    cursor: pointer;
}

.contact-social-list li a:hover i {
    color: var(--white);
}

@media (max-width: 767px) {
    #mapWrapper {
        /* margin-top: 40px; */
        width: 100%;
    }
}

.contact-button {
    background-color: var(--primary-color);
}

.contact-button:hover {
    background-color: #2c4d85;
}

.contact-page-form .form-control {
    border: none;
}

/**contact css ends here**/
/**agent login css starts here**/
.agent-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("../assets/images/agent-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.agent-login::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
    content: "";
}

.agent-login .container {
    z-index: 2;
}

.agent-login-box {
    padding: 20px;
    margin-top: -50px;

    @media (max-width: 767px) {
        margin-top: -100px;
    }
}

.login-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
}

.agent-login-header {
    padding: 30px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* box-shadow: 0 0 7px rgba(233, 233, 233, 0.7); */
    /* background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4); */
    z-index: 10;

    @media (max-width: 767px) {
        padding: 10px 0px;
    }
}

.my-button {
    padding: 10px;
    border-radius: 50%;
    background-color: var(--tertiary-color);
    display: inline-flex !important;
    /* border: 1px solid rgb(196 196 196 / 33%); */
}

.my-button:hover {
    background-color: var(--primary-color);
}

.my-button i {
    font-size: 20px;
    height: auto;
    width: auto;
    color: var(--white);

    @media (max-width: 767px) {
        font-size: 14px;
    }
}

.my-button .icon {
    height: 24px;
    width: 24px;

    @media (max-width: 767px) {
        height: 16px;
        width: 16px;
    }
}

.my-button svg {
    height: 24px;
    width: 24px;

    @media (max-width: 767px) {
        height: 16px;
        width: 16px;
    }

    color: var(--white);
}

.agent-login .forgot-password,
.agent-login,
.agent-login .register {
    font-size: 14px;
}

.agent-login .forgot-password:hover {
    text-decoration: underline;
}

.agent-login .register {
    text-decoration: underline;
}

.agent-login .register:hover {
    color: var(--legendary-color) !important;
}

.legal {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px 0px;
}

.legal p {
    font-size: 12px;
}

/**agent login css ends here**/
/**university page css starts here **/
.university-introduction {
    min-height: 420px;
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;

    @media (max-width: 767px) {
        min-height: 320px;
    }

    position: relative;
    z-index: 0;
}

.university-introduction .container {
    z-index: 2;
    position: relative;
}

.university-introduction::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 30%,
        rgba(0, 0, 0, 0.3) 100%
    );
    content: "";
    z-index: 1;
}

.university-logo {
    height: 100px;
    width: 100%;
}

.university-logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: left;
    filter: drop-shadow(0 4px 8px rgba(148, 148, 148, 0.4));
}

.introduction {
    height: 100%;
    display: inline-flex;
    flex-direction: column;
    gap: 14px;
    justify-content: end;
}

.introduction h1 {
    width: fit-content;
    color: var(--legendary-color) !important;
    border-left: 4px solid currentColor !important;
    background-color: #ffffffe3 !important;

    @media (max-width: 767px) {
        background-color: #ffffffde !important;
    }
}

.introduction p {
    text-shadow: 0px 3px 7px rgba(0, 0, 0, 0.9);
}

/* .introduction .left-border {
    background-color: #b7e3ffb0 !important;
} */

.light-breadcrump .breadcrump-list {
    padding: 10px 0px;
}

.light-breadcrump .breadcrump-list li:last-child a {
    color: var(--primary-color);
}

.light-breadcrump .breadcrump-list li:last-child a:hover {
    text-decoration: none;
}

.table > :not(caption) > * > * {
    padding: 20px;

    @media (max-width: 767px) {
        padding: 10px;
    }
}

/**university page css ends here **/
/**apply now css starts here**/
/* .apply-form-box {
    padding: 30px;
    border-radius: 40px;
    border: 1px solid var(--light-grey) !important;
    background-color: var(--white);
} */
/** .apply-form, .test-preparation-form {
    background-image: url("../assets/images/apply-now-bg.png");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
} */
/**apply now css ends here**/
/**contact css starts here**/
.contact-form .form-control {
    /* background-color: #eff3f9; */
    background-color: var(--white);
    color: #000 !important;
}

.contact-form {
    background-color: #eff5fd;
    padding: 40px 30px;
    border-radius: 5px;

    @media (max-width: 767px) {
        padding: 20px 14px;
    }
}

/**contact css ends here**/
/**single destination css starts here**/
.destination-image-container {
    height: 450px;
    border-radius: 8px;
    border: 3px solid var(--white);
    box-shadow: 0px 3px 14px rgba(0, 0, 0, 0.25);

    @media (max-width: 767px) {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .caption-2 {
        color: var(--tertiary-color) !important;
    }
}

.tertiary-line {
    height: 7px;
    width: 75px;
    background-color: var(--tertiary-color);
    margin: 0px 0px 20px 0px;
    outline: none;
    opacity: 1;
    border: none;
}

.light-blue-bg {
    background-color: #eef7ff;
}

.country-university-swiper .swiper-slide img {
    border: 2px solid #f1f1f1;
}

.link-variant-3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    justify-content: center;
    color: var(--primary-color);
    font-family: "Sora", sans-serif;
}

.link-variant-3 i {
    color: var(--primary-color);
    transform: translateX(0);
    transition: all 0.3s ease;
    font-size: 12px;
}

.link-variant-3:hover i {
    transform: translateX(2px);
}

.link-variant-3 span {
    position: relative;
    padding-bottom: 0px;
}

.link-variant-3 span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1.7px;
    width: 100%;
    background-color: currentColor;
}

.link-variant-3:hover span {
    text-decoration: none;
}

.link-variant-3:hover {
    cursor: pointer;
    color: var(--black);
}

.link-variant-4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    justify-content: center;
    color: var(--white);
    font-family: "Sora", sans-serif;
}

.link-variant-4 i {
    color: var(--white);
    transform: translateX(0);
    transition: all 0.3s ease;
    font-size: 12px;
}

.link-variant-4:hover i {
    transform: translateX(2px);
    color: var(--tertiary-color);
}

.link-variant-4 span {
    position: relative;
    padding-bottom: 0px;
}

.link-variant-4 span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1.7px;
    width: 100%;
    background-color: currentColor;
}

.link-variant-4:hover span {
    text-decoration: none;
}

.link-variant-4:hover {
    cursor: pointer;
    color: var(--tertiary-color);
}

#testimonial {
    background-image: url("../assets/background/testimonial-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.testimonial-card {
    background-image: url("../assets/images/test-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 3px 14px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.testimonial-card .profile {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-card .details {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.testimonial-card .details .rating {
    display: flex;
    flex-direction: row;
    gap: 2px;
    flex-wrap: nowrap;
}

.testimonial-card p {
    flex-grow: 1;
}

.details h6 {
    margin: 0;
    font-weight: 700;
}

.details p {
    color: #333;
    font-size: 14px;
    margin: 0;
}

.rating img {
    height: 24px;
    width: 24px;
}

.country-university-swiper img {
    height: 90px;

    @media (max-width: 767px) {
        height: 68px;
    }
}

.destination-image-container-2 {
    max-width: 80%;
    height: 350px !important;

    @media (max-width: 767px) {
        height: 280px !important;
        max-width: 100%;
    }
}
/* 
.study-testimonial-swiper {
    width: 70%;

    @media (max-width: 767px) {
        width: 100%;
    }
} */

/**single destination css ends here**/
/**destination listing css starts here**/
.destination-box a {
    padding: 20px 10px;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    /* border: 3px solid #d5e8ff;
    background-color: #eff5fd; */
    width: 100%;
    box-shadow: 0px 1px 3px rgb(0 0 0 / 22%);
    transform: translateY(0);
}

.destination-box img {
    height: 50px;
    width: 50px;
}

.destination-box a:hover {
    transform: translateY(-3px);
}

.destination-box a h6 {
    position: relative;
    display: inline-block;
}

.destination-box a:hover h6 {
    color: var(--secondary-color);
}

.destination-box a h6::after {
    content: "";
    position: absolute;
    left: 50%;
    /* start from center */
    bottom: 0;
    width: 0;
    /* initial width 0 */
    height: 2px;
    /* thickness of underline */
    background-color: currentColor;
    /* underline color */
    transition: width 0.3s ease, left 0.3s ease;
}

.destination-box a:hover h6::after {
    width: 100%;
    /* expand to full width */
    left: 0;
    /* grow from center to edges */
}

/**destination listing css ends here**/

/* css for country code of tel  */

.iti {
    width: 100%;
}

.iti--container {
    z-index: 9999 !important;
}

.iti + .invalid-feedback {
    display: block;
    margin-top: 0.25rem;
}

.iti.is-invalid + .invalid-feedback,
.phone-input.is-invalid ~ .invalid-feedback {
    display: block;
}

/**share icons **/
.share-buttons {
  display: flex;
  gap: 7px;
}

.share-buttons a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Platform Colors */
.facebook { background: #1877f2; }
.messenger { background: #0084ff; }
.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.linkedin { background: #0077b5; }
.whatsapp { background: #25d366; }

/* Hover Effect */
.share-buttons a:hover {
  transform: translateY(-1px);
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
  color: white !important;
  i {
    font-size: 18px !important;
  }
}
.branch-box {
    margin-top: 40px;
}
.branch-item {
        display: flex;
        flex-direction: row !important;
        gap: 20px !important;
        flex-wrap: wrap !important;
      }
      .branch-item a {
        padding: 10px;
        border-radius: 10px;
        background-color: #f3f3f3;
        flex-direction: column !important;
        display: flex !important;
        gap: 7px !important;
        align-items: center;
        justify-content: center;
        height: 120px;
         width: 120px;
      }
      .branch-item a img {
        height: 50px;
        object-fit: contain;
        width: 50px;
        border-radius: 50%;
        border: 2px solid white;
      }
        
      
.branch-item a span {
    position: relative;
    display: inline-block;
    font-weight: 600;
    color: #626262;
}

.branch-item a span::after {
    content: "";
    position: absolute;
    left: 50%;
    /* start from center */
    bottom: -1px;
    width: 0;
    /* initial width 0 */
    height: 2px;
    /* thickness of underline */
    background-color: currentColor;
    /* underline color */
    transition: width 0.3s ease, left 0.3s ease;
}

.branch-item a:hover span::after {
    width: 100%;
    /* expand to full width */
    left: 0;
    /* grow from center to edges */
}

@media (max-width: 767px) {
    .branch-box {
       margin-bottom: 30px;
       margin-top: 20px;
    }
}
.swiper-pagination {
    position: relative;
    margin-top: 20px;
}
.swiper-pagination .swiper-pagination-bullet-active{
    width: 20px !important;
    border-radius: 7px !important;
}

.jrk-advantage {
  background: #f5f7fa;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #0b2a4a;
  margin-bottom: 15px;
}

.section-desc {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  max-width: 320px;
}

/* Card Base */
.adv-card {
  padding: 25px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.15);
}

/* Light Card */
.light-card {
  background: #ffffff;
  color: #0b2a4a;
}

/* Dark Highlight Card */
.dark-card {
  background: var(--primary-color);
  color: #ffffff;
}

/* Yellow Highlight Card */
.highlight-card {
  background: #fac644;
  color: #0b2a4a;
  
}

/* Icon */
.why-icon {
    margin-bottom: 
    10px;
}
.why-icon i {
  font-size: 32px;
  color: #e9cb21;
}

/* Hover */
.adv-card:hover {
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 991px) {
  .section-desc {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
  }

  .adv-card {
    padding: 20px;
  }
}
.highlight-card i {
    color: #fff !important;
}
.dark-card h5 {
    color: #fff !important;
}
/**nepal branch css starts here**/


.branch-box-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.branch-card {
  background: #eff5fd;
  /* border: 3px solid #ebf3ff; */
  border-radius: 16px;
  padding: 30px;
  transition: 0.3s ease;
  
}
.branch-card a:hover {
    color: #bd9e24;
        text-decoration: underline;
}
@media (max-width:767px) {
    .branch-card {
        padding: 20px;
    }
    
}

.branch-card:hover {
  transform: translateY(-5px);
}

.branch-title {
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.branch-card i {
  min-width: 20px;
  margin-top: 5px;
}
.branch-title img {
    height: 20px;
    width: 20px;
    object-fit: contain;
    margin-right: 8px;
}
.branch-card img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--tertiary-color);
}
